diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 1cb75921..a2173f00 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.11.0 +current_version = 0.12.0 commit = True tag = True diff --git a/CMakeLists.txt b/CMakeLists.txt index bade774e..5d83db0e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.5) project("odil") -set(odil_VERSION 0.11.0) +set(odil_VERSION 0.12.0) string(REGEX MATCH "^([0-9]+)\\.([0-9]+)\\.([0-9]+)" _ "${odil_VERSION}") set(odil_MAJOR_VERSION "${CMAKE_MATCH_1}") set(odil_MINOR_VERSION "${CMAKE_MATCH_2}") diff --git a/documentation/installation/index.rst b/documentation/installation/index.rst index 2a75a2ea..26fc090d 100644 --- a/documentation/installation/index.rst +++ b/documentation/installation/index.rst @@ -28,9 +28,9 @@ The system-specific instructions will detail how to install using pre-compiled p .. code-block:: bash - wget https://github.com/lamyj/odil/archive/v0.11.0.tar.gz - tar -x -f v0.11.0.tar.gz - cd odil-0.11.0 + wget https://github.com/lamyj/odil/archive/v0.12.0.tar.gz + tar -x -f v0.12.0.tar.gz + cd odil-0.12.0 You can also clone the `Git repository`_. Note that the latest Git version may not always compile; should it happen, you can keep your clone but check out the latest tagged version: @@ -38,7 +38,7 @@ You can also clone the `Git repository`_. Note that the latest Git version may n git clone https://github.com/lamyj/odil cd odil - git checkout v0.11.0 + git checkout v0.12.0 Build options -------------