changelog-tool 0.7.0 → 0.7.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. package/changelog.md +6 -0
  2. package/cli.mjs +1 -0
  3. package/package.json +1 -1
package/changelog.md CHANGED
@@ -1,6 +1,12 @@
1
1
  Changelog
2
2
  =========
3
3
 
4
+ 0.7.1 (2023-02-14)
5
+ ------------------
6
+
7
+ * Bug: forgot to commit the release
8
+
9
+
4
10
  0.7.0 (2023-02-14)
5
11
  ------------------
6
12
 
package/cli.mjs CHANGED
@@ -255,6 +255,7 @@ async function release() {
255
255
  }
256
256
  if (useGit) {
257
257
  runCommand(`git add --all`);
258
+ runCommand(`git commit -m "Releasing ${lastVersion.version}"`);
258
259
  runCommand(`git tag v${lastVersion.version}`);
259
260
  }
260
261
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "changelog-tool",
3
- "version": "0.7.0",
3
+ "version": "0.7.1",
4
4
  "description": "A CLI tool for manipulating changelogs",
5
5
  "type": "module",
6
6
  "main": "index.mjs",