You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+10-5Lines changed: 10 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -8,20 +8,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
8
8
## [Unreleased]
9
9
10
10
#### Added
11
-
- CMake: Added `secp256k1_objs` interface library to allow parent projects to embed secp256k1 object files into their own static libraries.
11
+
- CMake: Added `secp256k1_objs` interface library to allow parent projects to embed libsecp256k1 object files into their own static libraries.
12
12
13
13
#### Changed
14
14
- The pointers `secp256k1_context_static` and `secp256k1_context_no_precomp` to the constant context object are now const.
15
-
- Removed `SECP256K1_WARN_UNUSED_RESULT` attribute from several functions that always return 1. Compilers will no longer warn if the return value is unused.
16
-
-The minimum required CMake version was increased to 3.22.
17
-
-Building with CMake is no longer considered experimental.
18
-
- Shared libraries built with CMake on FreeBSD now create the full versioned filename and symlink chain, matching the behavior of autotools builds.
15
+
- Removed `SECP256K1_WARN_UNUSED_RESULT` attribute (defined as `__attribute__ ((__warn_unused_result__))`) from several API functions that always return 1. Compilers will no longer warn if the return value is unused.
16
+
-CMake: Building with CMake is no longer considered experimental.
17
+
-CMake: The minimum required CMake version was increased to 3.22.
18
+
-CMake: Shared libraries built with CMake on FreeBSD now create the full versioned filename and symlink chain, matching the behavior of autotools builds.
19
19
20
20
#### Removed
21
21
- Removed previously deprecated function aliases `secp256k1_ec_privkey_negate`, `secp256k1_ec_privkey_tweak_add` and
22
22
`secp256k1_ec_privkey_tweak_mul`. Use `secp256k1_ec_seckey_negate`, `secp256k1_ec_seckey_tweak_add` and
23
23
`secp256k1_ec_seckey_tweak_mul` instead.
24
24
25
+
#### ABI Compatibility
26
+
The symbols `secp256k1_ec_privkey_negate`, `secp256k1_ec_privkey_tweak_add`, and `secp256k1_ec_privkey_tweak_mul` were removed.
27
+
The pointers `secp256k1_context_static` and `secp256k1_context_no_precomp` have been made const.
28
+
Otherwise, the library maintains backward compatibility with version 0.6.0.
0 commit comments