Skip to content

Commit 1a53f49

Browse files
committed
Merge #1808: Prepare for 0.7.1
20a209f release: prepare for 0.7.1 (Jonas Nick) c4b6a81 changelog: update in preparation for the v0.7.1 release (Jonas Nick) Pull request description: ACKs for top commit: sipa: ACK 20a209f real-or-random: ACK 20a209f Tree-SHA512: 4d65218c9cc0cb0d968a972c2d199b2eaee12879a9a98dbea9476c10ae0d24f531dbb839989dfdcc01b3e3420c9a6e14a1fa9e2724c788bfafd33174675598e3
2 parents ebb3588 + 20a209f commit 1a53f49

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed

CHANGELOG.md

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,17 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [Unreleased]
8+
## [0.7.1] - 2026-01-26
9+
10+
#### Changed
11+
- Tests: Introduced a unit test framework with support for parallel test execution, selective test running, and named command-line arguments. Run `./tests -help` for usage information.
12+
13+
#### Fixed
14+
- Increased the number of cases where the library attempts to clear secrets from the stack.
15+
- build: Fixed x86_64 assembly feature check that could fail when user-provided `CFLAGS` included `-Werror`. This would cause the build to fall back to the slower C implementation instead of using the optimized x86_64 assembly.
16+
17+
#### ABI Compatibility
18+
The ABI is backward compatible with version 0.7.0.
919

1020
## [0.7.0] - 2025-07-21
1121

@@ -187,7 +197,7 @@ This version was in fact never released.
187197
The number was given by the build system since the introduction of autotools in Jan 2014 (ea0fe5a5bf0c04f9cc955b2966b614f5f378c6f6).
188198
Therefore, this version number does not uniquely identify a set of source files.
189199

190-
[unreleased]: https://github.com/bitcoin-core/secp256k1/compare/v0.7.0...HEAD
200+
[0.7.1]: https://github.com/bitcoin-core/secp256k1/compare/v0.7.0...v0.7.1
191201
[0.7.0]: https://github.com/bitcoin-core/secp256k1/compare/v0.6.0...v0.7.0
192202
[0.6.0]: https://github.com/bitcoin-core/secp256k1/compare/v0.5.1...v0.6.0
193203
[0.5.1]: https://github.com/bitcoin-core/secp256k1/compare/v0.5.0...v0.5.1

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ AC_PREREQ([2.60])
66
define(_PKG_VERSION_MAJOR, 0)
77
define(_PKG_VERSION_MINOR, 7)
88
define(_PKG_VERSION_PATCH, 1)
9-
define(_PKG_VERSION_IS_RELEASE, false)
9+
define(_PKG_VERSION_IS_RELEASE, true)
1010

1111
# The library version is based on libtool versioning of the ABI. The set of
1212
# rules for updating the version can be found here:

0 commit comments

Comments
 (0)