-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #37 from etscrivner/release-4.0.0
rbsecp256k1 4.0.0
- Loading branch information
Showing
2 changed files
with
21 additions
and
1 deletion.
There are no files selected for viewing
20 changes: 20 additions & 0 deletions
20
documentation/releases/release-notes/release-notes-4.0.0.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
rbsecp256k1 version 4.0.0 is now available. | ||
|
||
Please report bugs using the issue tracker at GitHub: | ||
|
||
https://github.com/etscrivner/rbsecp256k1/issues | ||
|
||
Notable Changes | ||
=============== | ||
|
||
This release makes major changes to the library in terms of object allocation | ||
and cloning. It removes the cloning of most `secp256k1_context` objects and | ||
opts for the static `secp256k1_context_no_precomp` where it is possible to use | ||
this. This allows for a major restructuring of the library to something more | ||
sensible. | ||
|
||
### Library Updates | ||
|
||
The following updates were made to the library: | ||
|
||
* Use Static Contexts Where Possible ([#35](https://github.com/etscrivner/rbsecp256k1/pull/35)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
module Secp256k1 | ||
VERSION = '3.0.1'.freeze | ||
VERSION = '4.0.0'.freeze | ||
end |