-
-
Notifications
You must be signed in to change notification settings - Fork 90
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Release version not correlated to previous Prerelease version #788
Comments
Anyone please ? |
It's hard to know what's going on with git flow I cannot help you much but in your position I would look at the last generated tag and check if it's correctly pointing to your main branch, semver uses the last tag to calculate the next version. |
It's hard to know what's going on with git flow I cannot help you much but in your position I would look at the last generated tag and check if it's correctly pointing to your main branch especially after you merged develop into main, semver uses the current tag to calculate the next version. |
I think the problem ist this commit: 7459d8b#diff-75b9477886013beac794751b9469c878ea7b9918d6c2abeaf46a9ebde40f81a6. After that commit all prerelease tags are filtered out if |
Hey there, I’m facing an issue with semantic versioning on my current setup. I’m using semver 2.23.0 with Nx 14, and here’s what’s happening: I have Tag v1.0.0 Could someone help me figure this out? Thanks a lot! |
I have a gitflow as follow:
When I create the prerelease version, I get this tag: my-project-name-0.5.0-dev.1
So if I merge this develop into main, I expect to get this: my-project-name-0.5.0
But I get this: my-project-name-0.4.2 (the previous release was my-project-name-0.4.1)
Do I miss something or is it the right behavior ?
This is my current project.json config:
NOTE: I use the latest v5.1.1 with Nx 16 and Node 18
Thank you !
The text was updated successfully, but these errors were encountered: