@storm-software/git-tools 1.32.3 → 1.32.5

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.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,27 @@
1
+ ## 1.32.5 (2024-01-28)
2
+
3
+
4
+ ### 🩹 Fixes
5
+
6
+ - **git-tools:** Reformat display message ([7ec1ff23](https://github.com/storm-software/storm-ops/commit/7ec1ff23))
7
+
8
+
9
+ ### ❤️ Thank You
10
+
11
+ - Patrick Sullivan
12
+
13
+ ## 1.32.4 (2024-01-27)
14
+
15
+
16
+ ### 🩹 Fixes
17
+
18
+ - **git-tools:** Added skip ci to release commit message ([2e808a18](https://github.com/storm-software/storm-ops/commit/2e808a18))
19
+
20
+
21
+ ### ❤️ Thank You
22
+
23
+ - Patrick Sullivan
24
+
1
25
  ## 1.32.3 (2024-01-27)
2
26
 
3
27
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/git-tools",
3
- "version": "1.32.3",
3
+ "version": "1.32.5",
4
4
  "private": false,
5
5
  "description": "⚡ A package containing various git tools used in Storm workspaces.",
6
6
  "keywords": [
@@ -56,7 +56,7 @@ export const runRelease = async (
56
56
  gitCommit: false
57
57
  });
58
58
 
59
- writeInfo(config, "Generating the release changelog...");
59
+ writeInfo(config, "Generating the release changelog files...");
60
60
 
61
61
  await releaseChangelog({
62
62
  version: nxReleaseConfig.projectsRelationship !== "fixed" ? undefined : workspaceVersion,
@@ -69,7 +69,7 @@ export const runRelease = async (
69
69
  gitCommit: true,
70
70
  gitCommitMessage: `chore(${
71
71
  options.project ? options.project : "monorepo"
72
- }): Release latest workspace packages`,
72
+ }): Release latest workspace packages [skip ci]`,
73
73
  workspaceChangelog: nxReleaseConfig.projectsRelationship === "fixed"
74
74
  });
75
75