Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: antfu-collective/bumpp
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v9.3.0
Choose a base ref
...
head repository: antfu-collective/bumpp
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v9.3.1
Choose a head ref
  • 5 commits
  • 7 files changed
  • 3 contributors

Commits on Jan 22, 2024

  1. Copy the full SHA
    ba39e94 View commit details

Commits on Mar 3, 2024

  1. Copy the full SHA
    ae64720 View commit details
  2. chore: update deps

    antfu committed Mar 3, 2024
    Copy the full SHA
    27c5879 View commit details
  3. chore: update deps

    antfu committed Mar 3, 2024
    Copy the full SHA
    e36d0b4 View commit details
  4. chore: release v9.3.1

    antfu committed Mar 3, 2024
    Copy the full SHA
    b765d45 View commit details
Showing with 496 additions and 307 deletions.
  1. +9 −9 package.json
  2. +450 −294 pnpm-lock.yaml
  3. +7 −1 src/cli/parse-args.ts
  4. +23 −0 src/manifest.ts
  5. +1 −1 src/normalize-options.ts
  6. +1 −1 src/types/version-bump-options.ts
  7. +5 −1 src/update-files.ts
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "bumpp",
"version": "9.3.0",
"packageManager": "pnpm@8.14.1",
"version": "9.3.1",
"packageManager": "pnpm@8.15.4",
"description": "Bump version, commit changes, tag, and push to Git",
"author": {
"name": "James Messinger",
@@ -58,28 +58,28 @@
},
"dependencies": {
"@jsdevtools/ez-spawn": "^3.0.4",
"c12": "^1.6.1",
"c12": "^1.9.0",
"cac": "^6.7.14",
"fast-glob": "^3.3.2",
"js-yaml": "^4.1.0",
"prompts": "^2.4.2",
"semver": "^7.5.4"
"semver": "^7.6.0"
},
"devDependencies": {
"@antfu/eslint-config": "^2.6.2",
"@antfu/eslint-config": "^2.7.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.11.5",
"@types/node": "^20.11.24",
"@types/prompts": "^2.4.9",
"@types/semver": "^7.5.6",
"@types/semver": "^7.5.8",
"detect-indent": "^7.0.1",
"detect-newline": "^4.0.1",
"eslint": "^8.56.0",
"eslint": "^8.57.0",
"esno": "^4.0.0",
"log-symbols": "^6.0.0",
"npm-check": "^6.0.1",
"picocolors": "^1.0.0",
"rimraf": "^5.0.5",
"tsup": "^8.0.1",
"tsup": "^8.0.2",
"typescript": "^5.3.3"
}
}
Loading