Skip to content

Commit 94592cf

Browse files
committed
build: change libsecp-zkp version from 0.1 to 0.1.0-pre
1 parent 9c59cd6 commit 94592cf

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

configure.ac

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

0 commit comments

Comments
 (0)