Skip to content

Commit b4b02fd

Browse files
committed
build: change libsecp version from 0.1 to 0.1.0-pre
1 parent 09971a3 commit b4b02fd

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

configure.ac

+11-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
AC_PREREQ([2.60])
2-
AC_INIT([libsecp256k1],[0.1])
2+
3+
# The package (a.k.a. release) version is based on semantic versioning 2.0.0 of
4+
# the API. All changes in experimental modules are treated as
5+
# backwards-compatible and therefore at most increase the minor version.
6+
define(_PKG_VERSION_MAJOR, 0)
7+
define(_PKG_VERSION_MINOR, 1)
8+
define(_PKG_VERSION_BUILD, 0)
9+
define(_PKG_VERSION_IS_RELEASE, false)
10+
11+
AC_INIT([libsecp256k1],m4_join([.], _PKG_VERSION_MAJOR, _PKG_VERSION_MINOR, _PKG_VERSION_BUILD)m4_if(_PKG_VERSION_IS_RELEASE, [true], [], [-pre]),[https://github.com/bitcoin-core/secp256k1/issues],[libsecp256k1],[https://github.com/bitcoin-core/secp256k1])
12+
313
AC_CONFIG_AUX_DIR([build-aux])
414
AC_CONFIG_MACRO_DIR([build-aux/m4])
515
AC_CANONICAL_HOST

0 commit comments

Comments
 (0)