Understand major version between two versions #808
Unanswered
Tristan-gu
asked this question in
Q&A
Replies: 1 comment 1 reply
-
That sounds like a bug, can you file it as an issue instead of a discussion? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I don't understand something about major versions.
I have 2 packages
|- my_package_1 : 1.0.0
|- my_package_2 : 1.0.0
I make some commits:
|- my_package_1 : feat! commit
|- my_package_2 : fix: commit
And make a beta version with preid argument, the major version is good on 'my_package_1'
|- my_package_1 : 2.0.0.beta.0
|- my_package_2 : 1.0.1.beta.0
If I make a breaking change commit on 'my_package_2' and make a new preid version.
|- my_package_1 : 2.0.0.beta.1
|- my_package_2 : 1.0.1.beta.1
the my_package_2 is not updating the major version, is this normal ?
Beta Was this translation helpful? Give feedback.
All reactions