Commit f6a4db5
committed
Merge #76: Release tracking PR:
edf3497 Change the crate version format (Tobin C. Harding)
Pull request description:
Currently we use a version string of the form `0.20.2-0.6.1`
While attempting to release of the `0.6` we found out that cargo pulls down this version if a crate depends transitively on `0.20.2-0.5.0` - this implies that we should not have made breaking changes in the release, which we did.
We have since yanked both the `0.6` releases.
In order to function correctly with `cargo` change the format to put the crate version first and put the Core version second, note we use `+` (build) instead of `-` (pre-release). This should make `crates.io` display the latest version correctly also.
ACKs for top commit:
apoelstra:
ACK edf3497
Kixunil:
ACK edf3497
Tree-SHA512: 7a97fa4c2efaace3763d9b98271861f6c8a8b6f4e4a6ac53dac606a2167d18f9fe9ab795119585540ad54b9aa27e166796cbc0f35e6c9c561d056ab4449d23d3v0.100.0+0.20.2
2 files changed
+6
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
1 | 5 | | |
2 | 6 | | |
3 | 7 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | | - | |
4 | | - | |
| 3 | + | |
| 4 | + | |
5 | 5 | | |
6 | 6 | | |
7 | 7 | | |
| |||
0 commit comments