Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.12)
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)

project(memtailor VERSION 1.1 LANGUAGES CXX)
project(memtailor VERSION 1.2 LANGUAGES CXX)

find_package(Threads 2.1 REQUIRED QUIET)

Expand Down
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Note: also update version in CMakeLists.txt
dnl AC_INIT sets up autoconf and must be first macro.
AC_INIT([memtailor], [1.1]) # package, version, bug-report-email
AC_INIT([memtailor], [1.2]) # package, version, bug-report-email

# set up information about directories
AC_CONFIG_MACRO_DIR([build/autotools/m4]) # directory of extra autoconf macroes
Expand Down Expand Up @@ -62,7 +62,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([MEMTAILOR_SO_VERSION], [0:0:0])
AC_SUBST([MEMTAILOR_SO_VERSION], [0:2:0])

dnl ----- The gtest dependency

Expand Down
2 changes: 1 addition & 1 deletion src/memtailor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@

extern "C" {
void libmemtailorIsPresent(void) {}
char MEMTAILOR_VERSION_STRING[] = "1.1";
char MEMTAILOR_VERSION_STRING[] = "1.2";
}