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 upVersion 1.2.0 #199
Version 1.2.0 #199
Conversation
| @@ -1,6 +1,6 @@ | |||
| [package] | |||
| name = "smallvec" | |||
| version = "1.1.0" | |||
| version = "1.2.0" | |||
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
mbrubeck
Jan 28, 2020
Author
Contributor
In semver, for stable releases (version >= 1.0.0), the first number (MAJOR) is incremented for breaking changes. The second number (MINOR) is incremented for additional features added without breaking backward compatibility. The third number (PATCH) is incremented for bug fixes that do not add new API or break existing API.
Cargo treats two versions as "compatible" if the first non-zero component is the same. So 0.1.0 to 0.2.0 is a breaking change, but 1.1.0 to 1.2.0 is not.
|
Ah, nice, I always forget. @bors-servo r+ |
|
|
|
|
mbrubeck commentedJan 28, 2020
•
edited
Changes in this release:
IntoIternow implementsDebug(#196).smallvec!macro is now easier to use inno_stdcontexts where thevec!macro isn't automatically imported (#198).