diff --git a/CHANGELOG.md b/CHANGELOG.md index e747a551ff..b63a6ecb9f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # Change Log +## 0.23.0 (January 17, 2019) +* Common: [#2651](https://github.com/react-native-community/react-native-maps/pull/2651) Use `resolveAssetSource` method from Image +* Common: [#2576](https://github.com/react-native-community/react-native-maps/pull/2576) Fix import error for `MapMarker` and `MapOverlay` +* Common: [#2615](https://github.com/react-native-community/react-native-maps/pull/2615) Added helper method for calculating bounding box from region +* Common: [#2607](https://github.com/react-native-community/react-native-maps/pull/2607) Fix camera type definition error +* Common: [#2563](https://github.com/react-native-community/react-native-maps/pull/2563) Added camera system and deprecate `animateTo` methods +* Common: [#2571](https://github.com/react-native-community/react-native-maps/pull/2571) Added `getMapBoundaries` to `MapView` +* Common/iOS: [#2650](https://github.com/react-native-community/react-native-maps/pull/2650) Added `icon` prop for `MapMarker` +* iOS: [#2414](https://github.com/react-native-community/react-native-maps/pull/2414) Fix path for yoga in Podfile +* iOS: [#2627](https://github.com/react-native-community/react-native-maps/pull/2627) Added `tileSize` prop for `MapUrlTile` +* iOS: [#2608](https://github.com/react-native-community/react-native-maps/pull/2608) Fix `animateToCamera` +* Android: [#2653](https://github.com/react-native-community/react-native-maps/pull/2653) Defaults to the map services version instead of play services +* Android: [#2587](https://github.com/react-native-community/react-native-maps/pull/2587) Allow specifying a different version for base and maps on android +* Android: [#2598](https://github.com/react-native-community/react-native-maps/pull/2598) Fix crash for cannot getActiveLevelIndex +* Docs: [#2639](https://github.com/react-native-community/react-native-maps/pull/2639) Added note about recursive framework search paths +* Docs: [#2631](https://github.com/react-native-community/react-native-maps/pull/2631) Added notes for Google Play Services + ## 0.22.1 (November 8, 2018) * Common: [#2548](https://github.com/react-community/react-native-maps/pull/2548) Moved `babel-plugin-module-resolver` and `babel-preset-react-native` from dependencies to devDependencies * Android: [#2555](https://github.com/react-community/react-native-maps/pull/2555) Fixed [#2507](https://github.com/react-community/react-native-maps/issues/2507) diff --git a/example/ios/Podfile.lock b/example/ios/Podfile.lock index 64301c48cd..42b2e0e8c7 100644 --- a/example/ios/Podfile.lock +++ b/example/ios/Podfile.lock @@ -29,11 +29,11 @@ PODS: - GoogleMaps/Base - React (0.54.2): - React/Core (= 0.54.2) - - react-native-google-maps (0.22.1): + - react-native-google-maps (0.23.0): - Google-Maps-iOS-Utils (= 2.1.0) - GoogleMaps (= 2.5.0) - React - - react-native-maps (0.22.1): + - react-native-maps (0.23.0): - React - React/Core (0.54.2): - yoga (= 0.54.2.React) diff --git a/lib/android/gradle.properties b/lib/android/gradle.properties index 22d135f6e0..6d95c1a32b 100644 --- a/lib/android/gradle.properties +++ b/lib/android/gradle.properties @@ -1,5 +1,5 @@ VERSION_CODE=4 -VERSION_NAME=0.22.1 +VERSION_NAME=0.23.0 GROUP=com.airbnb.android POM_DESCRIPTION=React Native Map view component for Android diff --git a/package.json b/package.json index eb347689a9..15c51eb87f 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.22.1", + "version": "0.23.0", "scripts": { "start": "node node_modules/react-native/local-cli/cli.js start", "run:packager": "./node_modules/react-native/scripts/packager.sh",