diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index 47a23e5f4..9cc3d0cdb 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -32,7 +32,7 @@ react-native: 0.51.0 react: 16.0.0 - react-native-maps: 0.18.3 or "git+ssh://git@github.com/react-community/react-native-maps.git" + react-native-maps: 0.19.0 or "git+ssh://git@github.com/react-community/react-native-maps.git" ***Make sure you are on v0.48.0 or greater of react-native, otherwise you may get this error: diff --git a/CHANGELOG.md b/CHANGELOG.md index 109091a39..67449849b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Change Log +## 0.19.0 (December 14, 2017) +* Common: [#1715](https://github.com/airbnb/react-native-maps/pull/1715) Fixed region/initialRegion null overrides of this.props +* Common: [#1876](https://github.com/airbnb/react-native-maps/pull/1876) Added support for locally stored tile overlay +* iOS: [#1854](https://github.com/airbnb/react-native-maps/pull/1854) Update GoogleMaps dependency to 2.5.0 + ## 0.18.3 (November 30, 2017) * Android: [#1839](https://github.com/airbnb/react-native-maps/pull/1839) [AirGoogleMapManager] Use RCTDirectEventBlock for onMarkerPress diff --git a/example/ios/Podfile.lock b/example/ios/Podfile.lock index ec77fdbb4..5f60a8294 100644 --- a/example/ios/Podfile.lock +++ b/example/ios/Podfile.lock @@ -6,10 +6,10 @@ PODS: - GoogleMaps/Base - React (0.51.0): - React/Core (= 0.51.0) - - react-native-google-maps (0.18.3): + - react-native-google-maps (0.19.0): - GoogleMaps (= 2.5.0) - React - - react-native-maps (0.18.3): + - react-native-maps (0.19.0): - React - React/BatchedBridge (0.51.0): - React/Core diff --git a/lib/android/gradle.properties b/lib/android/gradle.properties index e4ea9f69d..97093a06a 100644 --- a/lib/android/gradle.properties +++ b/lib/android/gradle.properties @@ -1,5 +1,5 @@ VERSION_CODE=4 -VERSION_NAME=0.18.3 +VERSION_NAME=0.19.0 GROUP=com.airbnb.android POM_DESCRIPTION=React Native Map view component for Android diff --git a/package.json b/package.json index dc9b05641..87b595397 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "description": "React Native Mapview component for iOS + Android", "main": "index.js", "author": "Leland Richardson ", - "version": "0.18.3", + "version": "0.19.0", "scripts": { "start": "node node_modules/react-native/local-cli/cli.js start", "run:packager": "./node_modules/react-native/packager/packager.sh",