Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upPublish 1.0 #109
Closed
Publish 1.0 #109
Milestone
Comments
|
A very minor thing, release-wise, does it make sense to relax deps version requirements down to minor number? E.g. it's currently [dependencies]
byteorder = "1.0.0"
num-traits = "0.1.32"
[dependencies.serde]
version = "0.9.*"
[dev-dependencies]
serde_derive = "0.9.*"but I guess it could be just [dependencies]
byteorder = "1.0"
num-traits = "0.1"
[dependencies.serde]
version = "0.9"
[dev-dependencies]
serde_derive = "0.9" |
|
It's exactly the same thing, AFAIK, except for "0.1.32" being a subset of "0.1". Does it work with "0.1.0"? |
|
Yep it's the same thing except doesn't pin the micro version (third component), which is quite customary to do. As I said, it's really a minor thing.. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Rust 1.15 is out, so that means we can have 1.0 now, right? :)