@anolilab/multi-semantic-release 2.0.7 → 2.0.8
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 +12 -0
- package/lib/update-deps.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## @anolilab/multi-semantic-release [2.0.8](https://github.com/anolilab/semantic-release/compare/@anolilab/multi-semantic-release@2.0.7...@anolilab/multi-semantic-release@2.0.8) (2025-11-01)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* update package dependencies and configurations ([d94ebd8](https://github.com/anolilab/semantic-release/commit/d94ebd8869c34106aa0c11beb0f7410bbc86367f))
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Dependencies
|
|
9
|
+
|
|
10
|
+
* **@anolilab/semantic-release-clean-package-json:** upgraded to 3.0.5
|
|
11
|
+
* **@anolilab/semantic-release-pnpm:** upgraded to 2.0.5
|
|
12
|
+
|
|
1
13
|
## @anolilab/multi-semantic-release [2.0.7](https://github.com/anolilab/semantic-release/compare/@anolilab/multi-semantic-release@2.0.6...@anolilab/multi-semantic-release@2.0.7) (2025-11-01)
|
|
2
14
|
|
|
3
15
|
### Bug Fixes
|
package/lib/update-deps.js
CHANGED
|
@@ -306,7 +306,7 @@ export const resolveNextVersion = (currentVersion, nextVersion, bumpStrategy = "
|
|
|
306
306
|
const separator = ".";
|
|
307
307
|
const nextChunks = nextVersion.split(separator);
|
|
308
308
|
const currentChunks = currentVersion.split(separator);
|
|
309
|
-
const resolvedChunks = currentChunks.map((chunk, index) =>
|
|
309
|
+
const resolvedChunks = currentChunks.map((chunk, index) => nextChunks[index] ? chunk.replace(/\d+/u, nextChunks[index]) : chunk);
|
|
310
310
|
|
|
311
311
|
return resolvedChunks.join(separator);
|
|
312
312
|
}
|