bumpp 9.5.0 → 9.5.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.
@@ -825,6 +825,8 @@ async function getCurrentVersion(operation) {
825
825
  filesToCheck.push("package.json");
826
826
  if (!filesToCheck.includes("deno.json"))
827
827
  filesToCheck.push("deno.json");
828
+ if (!filesToCheck.includes("deno.jsonc"))
829
+ filesToCheck.push("deno.jsonc");
828
830
  for (const file of filesToCheck) {
829
831
  const version = await readVersion(file, cwd);
830
832
  if (version) {
package/dist/cli/index.js CHANGED
@@ -636,7 +636,7 @@ var logSymbols = isUnicodeSupported() ? main : fallback;
636
636
  var log_symbols_default = logSymbols;
637
637
 
638
638
  // package.json
639
- var version = "9.5.0";
639
+ var version = "9.5.1";
640
640
 
641
641
  // src/version-bump.ts
642
642
  var import_node_process5 = __toESM(require("process"));
@@ -819,6 +819,8 @@ async function getCurrentVersion(operation) {
819
819
  filesToCheck.push("package.json");
820
820
  if (!filesToCheck.includes("deno.json"))
821
821
  filesToCheck.push("deno.json");
822
+ if (!filesToCheck.includes("deno.jsonc"))
823
+ filesToCheck.push("deno.jsonc");
822
824
  for (const file of filesToCheck) {
823
825
  const version2 = await readVersion(file, cwd);
824
826
  if (version2) {
@@ -10,13 +10,13 @@ import {
10
10
  log_symbols_default,
11
11
  require_picocolors,
12
12
  versionBump
13
- } from "../chunk-BWAJDQ77.mjs";
13
+ } from "../chunk-7Z2ZW6D2.mjs";
14
14
 
15
15
  // src/cli/index.ts
16
16
  import process2 from "process";
17
17
 
18
18
  // package.json
19
- var version = "9.5.0";
19
+ var version = "9.5.1";
20
20
 
21
21
  // src/cli/parse-args.ts
22
22
  var import_picocolors = __toESM(require_picocolors());
package/dist/index.js CHANGED
@@ -824,6 +824,8 @@ async function getCurrentVersion(operation) {
824
824
  filesToCheck.push("package.json");
825
825
  if (!filesToCheck.includes("deno.json"))
826
826
  filesToCheck.push("deno.json");
827
+ if (!filesToCheck.includes("deno.jsonc"))
828
+ filesToCheck.push("deno.jsonc");
827
829
  for (const file of filesToCheck) {
828
830
  const version = await readVersion(file, cwd);
829
831
  if (version) {
package/dist/index.mjs CHANGED
@@ -7,7 +7,7 @@ import {
7
7
  loadBumpConfig,
8
8
  versionBump,
9
9
  versionBumpInfo
10
- } from "./chunk-BWAJDQ77.mjs";
10
+ } from "./chunk-7Z2ZW6D2.mjs";
11
11
 
12
12
  // src/index.ts
13
13
  var src_default = versionBump;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bumpp",
3
- "version": "9.5.0",
3
+ "version": "9.5.1",
4
4
  "packageManager": "pnpm@9.7.0",
5
5
  "description": "Bump version, commit changes, tag, and push to Git",
6
6
  "author": {