-
Notifications
You must be signed in to change notification settings - Fork 305
Bump secp256k1-sys version to 0.7.0 #549
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
Bump secp256k1-sys version to 0.7.0 #549
Conversation
8aea626 to
45beac7
Compare
|
@apoelstra I did #550 so that we can merge this PR, tag and release |
|
Lets do them both :) |
|
Actually, since this bumps |
|
@tcharding ok, now I think this is the only thing blocking release of 0.25.0 :). But it needs rebase. |
We are ready to release a new minor version of `secp256k1-sys`, in order to do so we must make change the symbol names to reflect the new version as well as the usual changelog and version bump. In preparation for releasing `secp256k1-sys` v0.7.0 do: - Rename symbols to from `0_6_1` -> `0_7_0`, done mechanically (search and replace) - Add changes log notes - Bump `secp256k1-sys` crate version 0.6.1 -> 0.7.0, justified because we have added new public methods to various types (e.g., `PublicKey::cmp_fast_unstable`)
45beac7 to
3fa2436
Compare
apoelstra
left a comment
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.
ACK 3fa2436
|
Tagged and published secp-sys. |
…0.7.0 3fa24362723ad6d4694437082300d49d2b4edee3 Bump secp256k1-sys version to 0.7.0 (Tobin C. Harding) Pull request description: We are ready to release a new minor version of `secp256k1-sys`, in order to do so we must make change the symbol names to reflect the new version as well as the usual changelog and version bump. In preparation for releasing `secp256k1-sys` v0.7.0 do: - Rename symbols to from `0_6_1` -> `0_7_0`, done mechanically (search and replace) - Add changes log notes - Bump `secp256k1-sys` crate version 0.6.1 -> 0.7.0, justified because we have added new public methods to various types (e.g., `PublicKey::cmp_fast_unstable`) ### Notes I based this PR on: - https://github.com/rust-bitcoin/rust-secp256k1/pull/490/files - https://github.com/rust-bitcoin/rust-secp256k1/pull/457/files ACKs for top commit: apoelstra: ACK 3fa24362723ad6d4694437082300d49d2b4edee3 Tree-SHA512: cb16de633865f26613aa29479ac6a6299b1790a00372cca61173f09a753179fa1d619b91ca25ba5872f571d3d9372b46731f9d4b3e8050077ec3c73d583f54ce
…0.7.0 3fa24362723ad6d4694437082300d49d2b4edee3 Bump secp256k1-sys version to 0.7.0 (Tobin C. Harding) Pull request description: We are ready to release a new minor version of `secp256k1-sys`, in order to do so we must make change the symbol names to reflect the new version as well as the usual changelog and version bump. In preparation for releasing `secp256k1-sys` v0.7.0 do: - Rename symbols to from `0_6_1` -> `0_7_0`, done mechanically (search and replace) - Add changes log notes - Bump `secp256k1-sys` crate version 0.6.1 -> 0.7.0, justified because we have added new public methods to various types (e.g., `PublicKey::cmp_fast_unstable`) ### Notes I based this PR on: - https://github.com/rust-bitcoin/rust-secp256k1/pull/490/files - https://github.com/rust-bitcoin/rust-secp256k1/pull/457/files ACKs for top commit: apoelstra: ACK 3fa24362723ad6d4694437082300d49d2b4edee3 Tree-SHA512: cb16de633865f26613aa29479ac6a6299b1790a00372cca61173f09a753179fa1d619b91ca25ba5872f571d3d9372b46731f9d4b3e8050077ec3c73d583f54ce
We are ready to release a new minor version of
secp256k1-sys, in order to do so we must make change the symbol names to reflect the new version as well as the usual changelog and version bump.In preparation for releasing
secp256k1-sysv0.7.0 do:0_6_1->0_7_0, done mechanically (search and replace)secp256k1-syscrate version 0.6.1 -> 0.7.0, justified because we have added new public methods to various types (e.g.,PublicKey::cmp_fast_unstable)Notes
I based this PR on: