We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When using updateVersionRangeMatchingBounds this can result in not proper version range updates, for example assume the following:
Require-Bundle: my.runtime;bundle-version="[5.5.0,5.5.1)"
and running
mvn org.eclipse.tycho:tycho-versions-plugin:4.0.4:set-version -DnewVersion=5.6.0-SNAPSHOT -DupdateVersionRangeMatchingBounds=true
it results in
Require-Bundle: my.runtime;bundle-version="[5.6.0,5.5.1)"
while the correct update would be:
Require-Bundle: my.runtime;bundle-version="[5.6.0,5.6.1)"
The text was updated successfully, but these errors were encountered:
If a consumer range is present update it accordingly
26de73e
Fix eclipse-tycho#3336
253632e
Fix #3336
010614c
Fix #3336 (cherry picked from commit 253632e)
4ce9764
Successfully merging a pull request may close this issue.
When using updateVersionRangeMatchingBounds this can result in not proper version range updates, for example assume the following:
Require-Bundle: my.runtime;bundle-version="[5.5.0,5.5.1)"
and running
mvn org.eclipse.tycho:tycho-versions-plugin:4.0.4:set-version -DnewVersion=5.6.0-SNAPSHOT -DupdateVersionRangeMatchingBounds=true
it results in
Require-Bundle: my.runtime;bundle-version="[5.6.0,5.5.1)"
while the correct update would be:
Require-Bundle: my.runtime;bundle-version="[5.6.0,5.6.1)"
The text was updated successfully, but these errors were encountered: