We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 82aa276 + fb5a032 commit ecd4dc8Copy full SHA for ecd4dc8
.github/workflows/release.yaml
@@ -168,8 +168,8 @@ jobs:
168
PATCH=${VERSION_PARTS[2]}
169
170
# Increment patch version
171
- NEW_MAJOR=$((MAJOR + 1))
172
- NEW_VERSION="v${NEW_MAJOR}.${MINOR}.${PATCH}"
+ NEW_PATCH=$((PATCH + 1))
+ NEW_VERSION="v${MAJOR}.${MINOR}.${NEW_PATCH}"
173
fi
174
175
# Set the full tag name
common/CHANGELOG.md
@@ -1,5 +1,9 @@
1
### Changelog
2
3
+## 1.0.1 - 2025-12-17
4
+
5
+- Fix `common` tags issue
6
7
## 1.0.0 - 2025-12-16
8
9
- Initial release
0 commit comments