diff --git a/.github/actions/setup-tools/action.yml b/.github/actions/setup-tools/action.yml index 9f7cd613..815d643c 100644 --- a/.github/actions/setup-tools/action.yml +++ b/.github/actions/setup-tools/action.yml @@ -1,14 +1,14 @@ -name: 'Setup Tools' -description: 'Setup tools needed in repo' +name: "Setup Tools" +description: "Setup tools needed in repo" inputs: skip-install-on-cache-hit: - description: 'If a Cache Hit happens, skip pnpm install' + description: "If a Cache Hit happens, skip pnpm install" required: true - default: 'false' + default: "false" runs: - using: 'composite' + using: "composite" steps: - name: Install Node.js uses: actions/setup-node@v3 @@ -42,4 +42,4 @@ runs: - name: Install dependencies if: inputs.skip-install-on-cache-hit == 'false' || (inputs.skip-install-on-cache-hit == 'true' && steps.cache-pnpm-store.cache-hit == 'false') shell: bash - run: pnpm install \ No newline at end of file + run: pnpm install --no-frozen-lockfile diff --git a/package.json b/package.json index 2377c103..5328fa58 100644 --- a/package.json +++ b/package.json @@ -16,7 +16,6 @@ "ci:publish:dev": "lerna publish prerelease --conventional-commits --conventional-prerelease --preid dev-$(date +\"%Y%m%dT%H%M%S\") --force-publish --no-changelog --no-git-tag-version --dist-tag dev --no-push --yes" }, "devDependencies": { - "@capacitor/ios": "next", "@types/node": "^24.10.1", "glob": "^13.0.0", "husky": "^9.1.7", @@ -27,7 +26,6 @@ "node": ">=20", "pnpm": ">=8" }, - "dependencies": {}, "workspaces": [ "plugin" ] diff --git a/plugin/Package.swift b/plugin/Package.swift index 28cd209e..73385d53 100644 --- a/plugin/Package.swift +++ b/plugin/Package.swift @@ -10,7 +10,7 @@ let package = Package( targets: ["CapacitorGoogleMapsPlugin"]) ], dependencies: [ - .package(url: "https://github.com/ionic-team/capacitor-swift-pm.git", from: "8.0.0-beta"), + .package(url: "https://github.com/ionic-team/capacitor-swift-pm.git", from: "8.0.0"), .package(url: "https://github.com/googlemaps/ios-maps-sdk.git", .upToNextMajor(from:"9.4.0")), .package(url: "https://github.com/googlemaps/google-maps-ios-utils.git", .exact("6.1.0")) ], diff --git a/plugin/package.json b/plugin/package.json index 6f386625..020c7378 100644 --- a/plugin/package.json +++ b/plugin/package.json @@ -1,6 +1,6 @@ { "name": "@capacitor/google-maps", - "version": "7.2.0", + "version": "8.0.0-alpha.0", "description": "Google maps on Capacitor", "main": "dist/plugin.cjs.js", "module": "dist/esm/index.js", @@ -59,10 +59,10 @@ "unittest:android": "cd ./unit-tests/android && ./gradlew testDebugUnitTest" }, "devDependencies": { - "@capacitor/android": "next", - "@capacitor/core": "next", + "@capacitor/android": "^8.0.0", + "@capacitor/core": "^8.0.0", "@capacitor/docgen": "0.3.0", - "@capacitor/ios": "next", + "@capacitor/ios": "^8.0.0", "@ionic/prettier-config": "^4.0.0", "@types/resize-observer-browser": "^0.1.11", "@types/supercluster": "^7.1.3", @@ -80,7 +80,7 @@ "typescript": "^5.9.3" }, "peerDependencies": { - "@capacitor/core": ">=8.0.0-beta.0" + "@capacitor/core": ">=8.0.0" }, "prettier": "@ionic/prettier-config", "capacitor": { diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index d30e7009..9a2237ee 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -8,9 +8,6 @@ importers: .: devDependencies: - '@capacitor/ios': - specifier: next - version: 8.0.0-beta.0(@capacitor/core@8.0.0-beta.0) '@types/node': specifier: ^24.10.1 version: 24.10.1