@storm-software/git-tools 1.32.0 → 1.32.2

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,7 @@
1
+
2
+
3
+
4
+
1
5
  ## 1.32.0 (2024-01-27)
2
6
 
3
7
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/git-tools",
3
- "version": "1.32.0",
3
+ "version": "1.32.2",
4
4
  "private": false,
5
5
  "description": "⚡ A package containing various git tools used in Storm workspaces.",
6
6
  "keywords": [
@@ -83,7 +83,7 @@ const stormChangelogRenderer: ChangelogRenderer = async ({
83
83
  `${await createVersionTitle(
84
84
  releaseVersion,
85
85
  changelogRenderOptions
86
- )}\n\n${entryWhenNoChanges}`,
86
+ )}${entryWhenNoChanges}`,
87
87
  ""
88
88
  );
89
89
  }
@@ -152,7 +152,7 @@ const stormChangelogRenderer: ChangelogRenderer = async ({
152
152
  changelogRenderOptions,
153
153
  project,
154
154
  projectGraph.nodes[project].data
155
- )}\n\n${entryWhenNoChanges}`,
155
+ )}${entryWhenNoChanges}`,
156
156
  ""
157
157
  );
158
158
  }
@@ -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 workspace packages`,
72
+ }): Release latest workspace packages`,
73
73
  workspaceChangelog: nxReleaseConfig.projectsRelationship === "fixed"
74
74
  });
75
75