react-native-google-maps-plus 1.8.7 → 1.8.8-dev.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2,6 +2,7 @@ import CoreLocation
2
2
  import GoogleMaps
3
3
  import GoogleMapsUtils
4
4
  import UIKit
5
+ import NitroModules
5
6
 
6
7
  final class GoogleMapsViewImpl: UIView, GMSMapViewDelegate,
7
8
  GMSIndoorDisplayDelegate {
@@ -1,3 +1,5 @@
1
+ import NitroModules
2
+
1
3
  final class RNGoogleMapsPlusModule: HybridRNGoogleMapsPlusModuleSpec {
2
4
  private let permissionHandler: PermissionHandler
3
5
  private let locationHandler: LocationHandler
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-google-maps-plus",
3
- "version": "1.8.7",
3
+ "version": "1.8.8-dev.1",
4
4
  "description": "React Native wrapper for Android & iOS Google Maps SDK",
5
5
  "main": "./lib/module/index.js",
6
6
  "module": "./lib/module/index.js",
@@ -94,7 +94,7 @@
94
94
  "@semantic-release/npm": "13.1.1",
95
95
  "@types/jest": "30.0.0",
96
96
  "@types/react": "19.1.1",
97
- "clang-format-node": "2.0.3",
97
+ "clang-format-node": "2.0.4",
98
98
  "conventional-changelog-conventionalcommits": "9.1.0",
99
99
  "del-cli": "7.0.0",
100
100
  "eslint": "9.39.1",
@@ -102,14 +102,14 @@
102
102
  "eslint-plugin-ft-flow": "3.0.11",
103
103
  "eslint-plugin-prettier": "5.5.4",
104
104
  "jest": "30.2.0",
105
- "lefthook": "2.0.2",
105
+ "lefthook": "2.0.3",
106
106
  "nitrogen": "0.31.5",
107
107
  "prettier": "3.6.2",
108
108
  "react": "19.1.1",
109
109
  "react-native": "0.82.1",
110
110
  "react-native-builder-bob": "0.40.14",
111
111
  "react-native-nitro-modules": "0.31.5",
112
- "semantic-release": "25.0.1",
112
+ "semantic-release": "25.0.2",
113
113
  "typescript": "5.9.3"
114
114
  },
115
115
  "peerDependencies": {
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ VERSION="$1"
3
+ IFS="." read -r major minor patch <<< "$VERSION"
4
+ NEXT_MINOR=$((minor + 1))
5
+ DEV_TAG="v${major}.${NEXT_MINOR}.0-dev.0"
6
+ echo "[semantic-release] tagging: $DEV_TAG"
7
+ git tag "$DEV_TAG"
8
+ git push origin "$DEV_TAG"