Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion sedr-library/release.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,14 @@

module.exports = {
branches: ["main"],
tagFormat: "v${version}",
// Scoped to this module's own tag namespace so its version history is independent of the
// other modules in this repo. Previously this was the unscoped "v${version}" format, which
// hexagonal-spring-rules also fell back to by default, so the two projects' tags collided
// and their version counters became interleaved. build.gradle's local-dev version resolver
// already expected a "sedr-library-v" prefix, so this now matches. A
// "sedr-library-v0.5.2" tag is seeded on the commit that was the last real release under the
// old shared scheme, so numbering continues from there instead of restarting.
tagFormat: "sedr-library-v${version}",
plugins: [
["@semantic-release/commit-analyzer", {
preset: 'angular',
Expand Down
Loading