Skip to content

Commit 118567c

Browse files
committed
[0.13.2] Bump version
1 parent 027d4fd commit 118567c

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
x.x.x Release notes (yyyy-MM-dd)
1+
0.13.2 Release notes (2016-5-26)
22
=============================================================
33
### Breaking changes
44
* None

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "realm",
33
"description": "Realm is a mobile database: an alternative to SQLite and key-value stores",
4-
"version": "0.13.1",
4+
"version": "0.13.2",
55
"license": "Apache-2.0",
66
"homepage": "https://realm.io",
77
"keywords": [

scripts/publish.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ rm -rf react-native/android/build
8282

8383
# Publish to npm, informing the prepublish script to build Android modules.
8484
echo "Publishing $VERSION to npm..."
85-
PRERELEASE=$(grep -Eio '[a-z]+' <<< "$VERSION")
85+
PRERELEASE=$(grep -Eio '[a-z]+' <<< "$VERSION" || true)
8686
REALM_BUILD_ANDROID=1 npm publish ${PRERELEASE:+--tag $PRERELEASE}
8787

8888
# Only push the tag to GitHub if the publish was successful.

src/ios/RealmJS.xcodeproj/project.pbxproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -779,7 +779,7 @@
779779
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
780780
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
781781
COPY_PHASE_STRIP = NO;
782-
CURRENT_PROJECT_VERSION = 0.13.1;
782+
CURRENT_PROJECT_VERSION = 0.13.2;
783783
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
784784
ENABLE_STRICT_OBJC_MSGSEND = YES;
785785
ENABLE_TESTABILITY = YES;
@@ -840,7 +840,7 @@
840840
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
841841
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
842842
COPY_PHASE_STRIP = NO;
843-
CURRENT_PROJECT_VERSION = 0.13.1;
843+
CURRENT_PROJECT_VERSION = 0.13.2;
844844
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
845845
ENABLE_NS_ASSERTIONS = NO;
846846
ENABLE_STRICT_OBJC_MSGSEND = YES;
@@ -934,7 +934,7 @@
934934
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
935935
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
936936
COPY_PHASE_STRIP = NO;
937-
CURRENT_PROJECT_VERSION = 0.13.1;
937+
CURRENT_PROJECT_VERSION = 0.13.2;
938938
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
939939
ENABLE_STRICT_OBJC_MSGSEND = YES;
940940
GCC_C_LANGUAGE_STANDARD = gnu99;
@@ -1001,7 +1001,7 @@
10011001
buildSettings = {
10021002
DEBUG_INFORMATION_FORMAT = dwarf;
10031003
DYLIB_COMPATIBILITY_VERSION = 1;
1004-
DYLIB_CURRENT_VERSION = 0.13.1;
1004+
DYLIB_CURRENT_VERSION = 0.13.2;
10051005
EXECUTABLE_PREFIX = lib;
10061006
GCC_PREPROCESSOR_DEFINITIONS = (
10071007
"DEBUG=1",
@@ -1031,7 +1031,7 @@
10311031
isa = XCBuildConfiguration;
10321032
buildSettings = {
10331033
DYLIB_COMPATIBILITY_VERSION = 1;
1034-
DYLIB_CURRENT_VERSION = 0.13.1;
1034+
DYLIB_CURRENT_VERSION = 0.13.2;
10351035
EXECUTABLE_PREFIX = lib;
10361036
GCC_PREPROCESSOR_DEFINITIONS = (
10371037
"REALM_PLATFORM_NODE=1",
@@ -1060,7 +1060,7 @@
10601060
isa = XCBuildConfiguration;
10611061
buildSettings = {
10621062
DYLIB_COMPATIBILITY_VERSION = 1;
1063-
DYLIB_CURRENT_VERSION = 0.13.1;
1063+
DYLIB_CURRENT_VERSION = 0.13.2;
10641064
EXECUTABLE_PREFIX = lib;
10651065
GCC_PREPROCESSOR_DEFINITIONS = (
10661066
"REALM_PLATFORM_NODE=1",

0 commit comments

Comments
 (0)