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
+18-7
Original file line number
Diff line number
Diff line change
@@ -3,29 +3,40 @@ Instead, it is the changelog of the upstream library [libsecp256k1](https://gith
3
3
4
4
# Changelog
5
5
6
-
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
6
+
All notable changes to this project will be documented in this file.
7
+
8
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
9
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
10
8
11
## [Unreleased]
9
12
10
13
## [0.2.0] - 2022-12-12
11
14
12
-
### Added
15
+
#### Added
16
+
- Added usage examples for common use cases in a new `examples/` directory.
13
17
- Added `secp256k1_selftest`, to be used in conjunction with `secp256k1_context_static`.
18
+
- Added support for 128-bit wide multiplication on MSVC for x86_64 and arm64, giving roughly a 20% speedup on those platforms.
14
19
15
-
### Changed
16
-
- Enabled modules schnorrsig, extrakeys and ECDH by default in `./configure`.
20
+
#### Changed
21
+
- Enabled modules `schnorrsig`, `extrakeys` and `ecdh` by default in `./configure`.
22
+
- The `secp256k1_nonce_function_rfc6979` nonce function, used by default by `secp256k1_ecdsa_sign`, now reduces the message hash modulo the group order to match the specification. This only affects improper use of ECDSA signing API.
17
23
18
-
### Deprecated
24
+
####Deprecated
19
25
- Deprecated context flags `SECP256K1_CONTEXT_VERIFY` and `SECP256K1_CONTEXT_SIGN`. Use `SECP256K1_CONTEXT_NONE` instead.
20
26
- Renamed `secp256k1_context_no_precomp` to `secp256k1_context_static`.
27
+
- Module `schnorrsig`: renamed `secp256k1_schnorrsig_sign` to `secp256k1_schnorrsig_sign32`.
21
28
22
-
### ABI Compatibility
29
+
####ABI Compatibility
23
30
24
31
Since this is the first release, we do not compare application binary interfaces.
25
-
However, there are unreleased versions of libsecp256k1 that are *not* ABI compatible with this version.
32
+
However, there are earlier unreleased versions of libsecp256k1 that are *not* ABI compatible with this version.
26
33
27
34
## [0.1.0] - 2013-03-05 to 2021-12-25
28
35
29
36
This version was in fact never released.
30
37
The number was given by the build system since the introduction of autotools in Jan 2014 (ea0fe5a5bf0c04f9cc955b2966b614f5f378c6f6).
31
38
Therefore, this version number does not uniquely identify a set of source files.
AC_DEFINE(USE_FORCE_WIDEMUL_INT128_STRUCT, 1, [Define this symbol to force the use of the structure for simulating (unsigned) int128 based wide multiplication])
3. Open a PR to the master branch with a commit (using message `"release: bump version after $MAJOR.$MINOR.$PATCH"`, for example) that sets `_PKG_VERSION_IS_RELEASE` to `false` and `_PKG_VERSION_PATCH` to `$PATCH + 1` and increases `_LIB_VERSION_REVISION`. If other maintainers are not present to approve the PR, it can be merged without ACKs.
26
+
3. Open a PR to the master branch with a commit (using message `"release cleanup: bump version after $MAJOR.$MINOR.$PATCH"`, for example) that sets `_PKG_VERSION_IS_RELEASE` to `false` and `_PKG_VERSION_PATCH` to `$PATCH + 1` and increases `_LIB_VERSION_REVISION`. If other maintainers are not present to approve the PR, it can be merged without ACKs.
27
27
4. Create a new GitHub release with a link to the corresponding entry in [CHANGELOG.md](../CHANGELOG.md).
0 commit comments