@capacitor/geolocation 7.1.5 → 7.1.7

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.
package/Package.swift CHANGED
@@ -10,20 +10,16 @@ let package = Package(
10
10
  targets: ["GeolocationPlugin"])
11
11
  ],
12
12
  dependencies: [
13
- .package(url: "https://github.com/ionic-team/capacitor-swift-pm.git", from: "7.0.0")
13
+ .package(url: "https://github.com/ionic-team/capacitor-swift-pm.git", from: "7.0.0"),
14
+ .package(url: "https://github.com/ionic-team/ion-ios-geolocation.git", from: "1.0.2")
14
15
  ],
15
16
  targets: [
16
- .binaryTarget(
17
- name: "IONGeolocationLib",
18
- url: "https://github.com/ionic-team/ion-ios-geolocation/releases/download/1.0.1/IONGeolocationLib.zip",
19
- checksum: "80e0283964bce3c5d05f61ff4acf4e029305f58d1699a7f16453058ba876bc21" // sha-256
20
- ),
21
17
  .target(
22
18
  name: "GeolocationPlugin",
23
19
  dependencies: [
24
20
  .product(name: "Capacitor", package: "capacitor-swift-pm"),
25
21
  .product(name: "Cordova", package: "capacitor-swift-pm"),
26
- "IONGeolocationLib"
22
+ .product(name: "IONGeolocationLib", package: "ion-ios-geolocation")
27
23
  ],
28
24
  path: "ios/Sources/GeolocationPlugin"),
29
25
  .testTarget(
package/README.md CHANGED
@@ -5,7 +5,7 @@ The Geolocation API provides simple methods for getting and tracking the current
5
5
  ## Install
6
6
 
7
7
  ```bash
8
- npm install @capacitor/geolocation
8
+ npm install @capacitor/geolocation@latest-7
9
9
  npx cap sync
10
10
  ```
11
11
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capacitor/geolocation",
3
- "version": "7.1.5",
3
+ "version": "7.1.7",
4
4
  "description": "The Geolocation API provides simple methods for getting and tracking the current position of the device using GPS, along with altitude, heading, and speed information if available.",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",
@@ -57,16 +57,17 @@
57
57
  "@ionic/prettier-config": "^4.0.0",
58
58
  "@ionic/swiftlint-config": "^2.0.0",
59
59
  "@semantic-release/changelog": "^6.0.3",
60
+ "@semantic-release/exec": "^7.1.0",
60
61
  "@semantic-release/git": "^10.0.1",
61
- "@semantic-release/github": "^11.0.1",
62
- "@semantic-release/npm": "^12.0.1",
62
+ "@semantic-release/github": "^12.0.0",
63
+ "@semantic-release/npm": "^13.1.1",
63
64
  "@types/node": "^20.14.8",
64
65
  "eslint": "^8.57.0",
65
66
  "prettier": "^3.3.3",
66
67
  "prettier-plugin-java": "^2.6.4",
67
68
  "rimraf": "^6.0.1",
68
69
  "rollup": "^2.78.1",
69
- "semantic-release": "^24.0.0",
70
+ "semantic-release": "^25.0.1",
70
71
  "swiftlint": "^2.0.0",
71
72
  "typescript": "~5.4.5"
72
73
  },