diff --git a/CMakeLists.txt b/CMakeLists.txt index 79b0dad..b2b9dc7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.12) set(CMAKE_CXX_STANDARD 14) set(CMAKE_CXX_STANDARD_REQUIRED ON) -project(mathic VERSION 1.1 LANGUAGES CXX) +project(mathic VERSION 1.2 LANGUAGES CXX) option(enable_pqsim "Build pqsim" OFF) option(enable_divsim "Build divsim" OFF) diff --git a/configure.ac b/configure.ac index fba2603..9970a3d 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ # Note: also update version in CMakeLists.txt dnl AC_INIT sets up autoconf and must be first macro. -AC_INIT([mathic], [1.1]) # package, version, bug-report-email +AC_INIT([mathic], [1.2]) # package, version, bug-report-email # set up information about directories AC_CONFIG_MACRO_DIR([build/autotools/m4]) # directory of extra autoconf macroes @@ -68,7 +68,7 @@ LT_INIT([disable-shared]) dnl Set the version for the library -- this concerns compatibility of the dnl source and binary interface of the library and is not the same as the dnl version of the project. -AC_SUBST([MATHIC_SO_VERSION], [0:1:0]) +AC_SUBST([MATHIC_SO_VERSION], [0:2:0]) dnl ----- The gtest dependency diff --git a/src/mathic.cpp b/src/mathic.cpp index 57acd98..c5a0018 100644 --- a/src/mathic.cpp +++ b/src/mathic.cpp @@ -2,5 +2,5 @@ extern "C" { void libmathicIsPresent(void) {} - char MATHIC_VERSION_STRING[] = "1.1"; + char MATHIC_VERSION_STRING[] = "1.2"; }