@cluerise/tools 5.0.0 → 5.0.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.
@@ -383,7 +383,7 @@ class Releaser {
383
383
  const packageJson = await PackageJson.init();
384
384
  const tagFormat = this.#config.tagFormat ?? "v${version}";
385
385
  const tag = tagFormat.replace("${version}", packageJson.version);
386
- const latestBranch = tagFormat.replace("${version}", "latest");
386
+ const latestBranch = tagFormat.replace("v${version}", "latest");
387
387
  const changelog = await this.#getLatestReleaseChangelog();
388
388
  return {
389
389
  name: packageJson.name,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cluerise/tools",
3
- "version": "5.0.0",
3
+ "version": "5.0.1",
4
4
  "description": "Tools for maintaining TypeScript projects.",
5
5
  "author": "Branislav Holý <brano@holy.am>",
6
6
  "repository": "github:cluerise/tools",