-
Notifications
You must be signed in to change notification settings - Fork 56
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
Fix release regex #212
Fix release regex #212
Conversation
rspirv/Cargo.toml
Outdated
[dependencies.spirv] | ||
version = "=0.1" | ||
path = "../spirv" | ||
spirv = { version = "=0.1.0+1.5.4", path = "../spirv" } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A dependency shouldn't use the +metadata
bit though, I hope cargo-release
understands and strips that off?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It ouput's like this which seems to make sense: Fixing rspirv's dependency on spirv to '= 0.1.1' (from '= 0.1.0')"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Jasper-Bekkers Does that mean it's already bumping the version to 0.1.1 before releasing? We should teach cargo-release
that 0.1.0
is our first release that isn't actually out yet. Maybe we should set it to 0.0.0
and pass 0.1.0
or 1.0.0
as argument to cargo-release
instead?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good point! :-)
59a80ff
to
dc28502
Compare
149ff97
to
295d870
Compare
No description provided.