changelog-tool 1.2.0 → 1.2.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.
Files changed (3) hide show
  1. package/changelog.md +6 -0
  2. package/cli.mjs +1 -1
  3. package/package.json +1 -1
package/changelog.md CHANGED
@@ -1,6 +1,12 @@
1
1
  Changelog
2
2
  =========
3
3
 
4
+ 1.2.1 (2025-05-26)
5
+ ------------------
6
+
7
+ * New --force flag was being ignored.
8
+
9
+
4
10
  1.2.0 (2025-05-12)
5
11
  ------------------
6
12
 
package/cli.mjs CHANGED
@@ -99,7 +99,7 @@ async function main() {
99
99
  });
100
100
  break;
101
101
  case 'release' :
102
- await release();
102
+ await release(values.force);
103
103
  break;
104
104
  case 'format' :
105
105
  await format();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "changelog-tool",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "description": "A CLI tool for manipulating changelogs",
5
5
  "type": "module",
6
6
  "main": "index.mjs",