Skip to content

Commit 11ffce0

Browse files
committed
Prepare initial release
There are plenty of unreleased variants of libsecp256k1 version 0.1.0 (libsecp256k1.so.0.0.0) in the wild. We choose a new version number to allow a clear distinction. There are variants of 0.1.0 that are incompatible with the initial release, hence we increase the minor version to arrive at version number 0.2.0. For the same reason, we increase the LIB_VERSION_CURRENT and keep AGE at 0.
1 parent 024fd47 commit 11ffce0

File tree

2 files changed

+15
-10
lines changed

2 files changed

+15
-10
lines changed

CHANGELOG.md

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,21 @@
11
# Changelog
22

3-
This file is currently only a template for future use.
4-
5-
Each change falls into one of the following categories: Added, Changed, Deprecated, Removed, Fixed or Security.
3+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
64

75
## [Unreleased]
86

7+
## [0.2.0] - 2022-12-08
8+
9+
- Initial release
10+
11+
## [0.1.0] - 2013-03-05 to 2022-12-08
12+
13+
This version was never actually released.
14+
The number was given by the build system since the introduction of autotools in Jan 2014 (ea0fe5a5bf0c04f9cc955b2966b614f5f378c6f6).
15+
Therefore, this version number does not uniquely identify a set of source files.
16+
17+
The following notable changes were made right before the initial release 0.2.0:
18+
919
### Changed
1020
- Enable modules schnorrsig, extrakeys and ECDH by default in ./configure
1121

@@ -15,8 +25,3 @@ Each change falls into one of the following categories: Added, Changed, Deprecat
1525

1626
### Added
1727
- Added `secp256k1_selftest`, to be used in conjunction with `secp256k1_context_static`.
18-
19-
## [MAJOR.MINOR.PATCH] - YYYY-MM-DD
20-
21-
### Added/Changed/Deprecated/Removed/Fixed/Security
22-
- [Title with link to Pull Request](https://link-to-pr)

configure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ AC_PREREQ([2.60])
44
# the API. All changes in experimental modules are treated as
55
# backwards-compatible and therefore at most increase the minor version.
66
define(_PKG_VERSION_MAJOR, 0)
7-
define(_PKG_VERSION_MINOR, 1)
7+
define(_PKG_VERSION_MINOR, 2)
88
define(_PKG_VERSION_PATCH, 99)
99
define(_PKG_VERSION_IS_RELEASE, false)
1010

@@ -13,7 +13,7 @@ define(_PKG_VERSION_IS_RELEASE, false)
1313
# https://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
1414
# All changes in experimental modules are treated as if they don't affect the
1515
# interface and therefore only increase the revision.
16-
define(_LIB_VERSION_CURRENT, 0)
16+
define(_LIB_VERSION_CURRENT, 1)
1717
define(_LIB_VERSION_REVISION, 0)
1818
define(_LIB_VERSION_AGE, 0)
1919

0 commit comments

Comments
 (0)