diff --git a/.github/workflows/release_v9.yml b/.github/workflows/release_v10.yml similarity index 95% rename from .github/workflows/release_v9.yml rename to .github/workflows/release_v10.yml index 4e7bc32c7d2..cb228e3f0e7 100644 --- a/.github/workflows/release_v9.yml +++ b/.github/workflows/release_v10.yml @@ -1,8 +1,8 @@ -name: Release v9 +name: Release v10 on: push: - branches: [v9] + branches: [v10] jobs: build: @@ -110,7 +110,7 @@ jobs: name: coverage-${{ matrix.os }}-${{ matrix.nodeRun }} path: coverage.tar - publish_v9: + publish_v10: if: github.repository_owner == 'pnp' needs: test runs-on: ubuntu-latest @@ -141,8 +141,8 @@ jobs: run: npm ci - name: Stamp beta to package version run: node scripts/update-package-version.js $GITHUB_SHA - - name: Publish @nine - run: npm publish --tag nine --access public --provenance + - name: Publish @ten + run: npm publish --tag ten --access public --provenance env: NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }} - name: Compress output @@ -156,7 +156,7 @@ jobs: deploy_docker: if: github.repository_owner == 'pnp' - needs: publish_v9 + needs: publish_v10 runs-on: ubuntu-latest steps: @@ -184,7 +184,7 @@ jobs: run: | echo "version=$(node -p "require('./package.json').version")" >> $GITHUB_OUTPUT - name: Wait for npm publish - run: node scripts/wait-npm-publish.js nine ${{ steps.package_version.outputs.version }} + run: node scripts/wait-npm-publish.js ten ${{ steps.package_version.outputs.version }} - name: Build and push ${{ steps.package_version.outputs.version }} uses: docker/build-push-action@v5 with: @@ -192,10 +192,10 @@ jobs: tags: m365pnp/cli-microsoft365:${{ steps.package_version.outputs.version }} build-args: | CLI_VERSION=${{ steps.package_version.outputs.version }} - - name: Build and push nine + - name: Build and push ten uses: docker/build-push-action@v5 with: push: true - tags: m365pnp/cli-microsoft365:nine + tags: m365pnp/cli-microsoft365:ten build-args: | CLI_VERSION=${{ steps.package_version.outputs.version }} \ No newline at end of file diff --git a/docs/docs/v9-upgrade-guidance.mdx b/docs/docs/v10-upgrade-guidance.mdx similarity index 97% rename from docs/docs/v9-upgrade-guidance.mdx rename to docs/docs/v10-upgrade-guidance.mdx index 2e805cd8d26..8a17b68e881 100644 --- a/docs/docs/v9-upgrade-guidance.mdx +++ b/docs/docs/v10-upgrade-guidance.mdx @@ -1,6 +1,6 @@ -# v9 Upgrade Guidance +# v10 Upgrade Guidance -The v9 of CLI for Microsoft 365 introduces several breaking changes. To help you upgrade to the latest version of CLI for Microsoft 365, we've listed those changes along with any actions you may need to take. +The v10 of CLI for Microsoft 365 introduces several breaking changes. To help you upgrade to the latest version of CLI for Microsoft 365, we've listed those changes along with any actions you may need to take. ## App diff --git a/docs/src/config/sidebars.ts b/docs/src/config/sidebars.ts index 21f3abd27dd..603b9c97528 100644 --- a/docs/src/config/sidebars.ts +++ b/docs/src/config/sidebars.ts @@ -3,7 +3,7 @@ import type { SidebarsConfig } from '@docusaurus/plugin-content-docs'; const sidebars: SidebarsConfig = { home: [ 'index', - 'v9-upgrade-guidance', + 'v10-upgrade-guidance', 'v8-upgrade-guidance', 'v7-upgrade-guidance', 'v6-upgrade-guidance', diff --git a/npm-shrinkwrap.json b/npm-shrinkwrap.json index a86107a1330..adda4d51c09 100644 --- a/npm-shrinkwrap.json +++ b/npm-shrinkwrap.json @@ -1,12 +1,12 @@ { "name": "@pnp/cli-microsoft365", - "version": "9.0.0", + "version": "10.0.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@pnp/cli-microsoft365", - "version": "9.0.0", + "version": "10.0.0", "license": "MIT", "dependencies": { "@azure/msal-common": "^14.14.0", diff --git a/package.json b/package.json index 74b1c1e1763..e7595efbb23 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@pnp/cli-microsoft365", - "version": "9.0.0", + "version": "10.0.0", "description": "Manage Microsoft 365 and SharePoint Framework projects on any platform", "license": "MIT", "main": "./dist/api.js",