Update to sync 3.3.0 (#1778)
* Updating sync and core * Simplying linking on node.js binding. * Adapting to new distribution packages of core.
This commit is contained in:
parent
c0c2606aa1
commit
4f65e057eb
22
CHANGELOG.md
22
CHANGELOG.md
|
@ -1,3 +1,25 @@
|
|||
X.Y.Z Release notes
|
||||
=============================================================
|
||||
### Compatibility
|
||||
* Sync protocol: 24
|
||||
* Server-side history format: 4
|
||||
* File format: 7
|
||||
* Realm Object Server: 3.0.0 or later
|
||||
|
||||
### Breaking changes
|
||||
* None.
|
||||
|
||||
### Enhancements
|
||||
* None.
|
||||
|
||||
### Bug fixes
|
||||
* None.
|
||||
|
||||
### Internal
|
||||
* Updated to Relm Sync 3.3.0.
|
||||
* Updated to Realm Core 5.6.0.
|
||||
|
||||
|
||||
2.4.0 Release notes (2018-4-26)
|
||||
=============================================================
|
||||
### Compatibility
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
PACKAGE_NAME=realm-js
|
||||
VERSION=2.4.0
|
||||
REALM_CORE_VERSION=5.4.0
|
||||
REALM_SYNC_VERSION=3.0.0
|
||||
REALM_CORE_VERSION=5.6.0
|
||||
REALM_SYNC_VERSION=3.3.0
|
||||
REALM_OBJECT_SERVER_VERSION=3.0.0
|
||||
|
||||
|
|
|
@ -200,13 +200,7 @@
|
|||
"type": "none",
|
||||
"dependencies": [ "realm-core" ],
|
||||
"link_settings": {
|
||||
"conditions": [
|
||||
["OS=='win'", {
|
||||
"libraries": [ "-lrealm-sync<(debug_library_suffix)" ]
|
||||
}, {
|
||||
"libraries": [ "-lrealm-sync-node<(debug_library_suffix)" ]
|
||||
}]
|
||||
]
|
||||
"libraries": [ "-lrealm-sync<(debug_library_suffix)" ],
|
||||
},
|
||||
"all_dependent_settings": {
|
||||
"defines": [ "REALM_ENABLE_SYNC=1" ]
|
||||
|
@ -259,6 +253,7 @@
|
|||
"include_dirs": [ "<(vendor_dir)/include" ],
|
||||
"library_dirs": [
|
||||
"<(vendor_dir)/lib",
|
||||
"<(vendor_dir)/lib64",
|
||||
"<(vendor_dir)/osx"
|
||||
]
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue