[1.3.0] Bump version
This commit is contained in:
parent
42bbdc9f07
commit
a916958941
14
CHANGELOG.md
14
CHANGELOG.md
|
@ -1,3 +1,17 @@
|
|||
vnext
|
||||
=============================================================
|
||||
### Breaking changes
|
||||
* None
|
||||
|
||||
### Enhancements
|
||||
* None
|
||||
|
||||
### Bug fixes
|
||||
* None
|
||||
|
||||
|
||||
1.3.0 Release notes (2017-5-11)
|
||||
=============================================================
|
||||
### Breaking changes
|
||||
* Files written by Realm this version cannot be read by earlier versions of Realm.
|
||||
Old files can still be opened and files open in read-only mode will not be modified.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
PACKAGE_NAME=realm-js
|
||||
VERSION=1.2.0
|
||||
VERSION=1.3.0
|
||||
REALM_CORE_VERSION=2.6.0
|
||||
REALM_SYNC_VERSION=1.8.3
|
||||
REALM_OBJECT_SERVER_VERSION=1.3.0
|
||||
|
|
14
package.json
14
package.json
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "realm",
|
||||
"description": "Realm is a mobile database: an alternative to SQLite and key-value stores",
|
||||
"version": "1.2.0",
|
||||
"version": "1.3.0",
|
||||
"license": "Apache-2.0",
|
||||
"homepage": "https://realm.io",
|
||||
"keywords": [
|
||||
|
@ -65,12 +65,12 @@
|
|||
"isMac": "node -p \"if (process.platform == 'darwin') { process.exit(0); } else { process.exit(-1); }\"",
|
||||
"testMac": "npm run isMac -s && echo this is mac || echo . ",
|
||||
"isWin": "node -p \"if (process.platform == 'win32') { process.exit(0); } else { process.exit(-1); }\"",
|
||||
"prealias:win:apply" : "git config alias.apply-win-symlink-aliases \"!f() { $(scripts/git-win-symlink-aliases); }; f\"",
|
||||
"alias:win:apply" : "git apply-win-symlink-aliases",
|
||||
"postalias:win:apply" : "git config --unset alias.apply-win-symlink-aliases",
|
||||
"alias:win:revert" : "git config alias.rm-symlink \"\" && git config alias.rm-symlinks \"\" && git config alias.checkout-symlinks \"\"",
|
||||
"win-fix-symlinks" : "npm run isWin -s && npm run alias:win:apply && git checkout-symlinks && git rm-symlinks || echo . ",
|
||||
"win-revert-symlinks" : "npm run isWin -s && npm run alias:win:apply && git checkout-symlinks && npm run alias:win:revert || echo .",
|
||||
"prealias:win:apply": "git config alias.apply-win-symlink-aliases \"!f() { $(scripts/git-win-symlink-aliases); }; f\"",
|
||||
"alias:win:apply": "git apply-win-symlink-aliases",
|
||||
"postalias:win:apply": "git config --unset alias.apply-win-symlink-aliases",
|
||||
"alias:win:revert": "git config alias.rm-symlink \"\" && git config alias.rm-symlinks \"\" && git config alias.checkout-symlinks \"\"",
|
||||
"win-fix-symlinks": "npm run isWin -s && npm run alias:win:apply && git checkout-symlinks && git rm-symlinks || echo . ",
|
||||
"win-revert-symlinks": "npm run isWin -s && npm run alias:win:apply && git checkout-symlinks && npm run alias:win:revert || echo .",
|
||||
"prereact-tests-android": "npm run isWin -s && npm run win-fix-symlinks || echo . ",
|
||||
"react-tests-android": "node scripts/react-tests-android.js || npm run postreact-tests-android",
|
||||
"postreact-tests-android": "npm run win-revert-symlinks"
|
||||
|
|
|
@ -956,7 +956,7 @@
|
|||
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
||||
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
CURRENT_PROJECT_VERSION = 1.2.0;
|
||||
CURRENT_PROJECT_VERSION = 1.3.0;
|
||||
CXX = "$(SRCROOT)/../scripts/ccache-clang++.sh";
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
||||
|
@ -1020,7 +1020,7 @@
|
|||
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
||||
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
CURRENT_PROJECT_VERSION = 1.2.0;
|
||||
CURRENT_PROJECT_VERSION = 1.3.0;
|
||||
CXX = "$(SRCROOT)/../scripts/ccache-clang++.sh";
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
ENABLE_NS_ASSERTIONS = NO;
|
||||
|
|
Loading…
Reference in New Issue