diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 410b15d..1373844 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.12.1 +current_version = 0.12.2 commit = True tag = True sign_tags = True diff --git a/CMakeLists.txt b/CMakeLists.txt index 03d3d58..6ee6882 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -5,7 +5,7 @@ else() cmake_policy(SET CMP0074 NEW) endif() -project("Odil" VERSION 0.12.1) +project("Odil" VERSION 0.12.2) option(BUILD_SHARED_LIBS "Build Odil with shared libraries." ON) option(BUILD_EXAMPLES "Build the examples directory." ON) diff --git a/documentation/installation/index.rst b/documentation/installation/index.rst index 56bde55..9a02325 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.12.1.tar.gz - tar -x -f v0.12.1.tar.gz - cd odil-0.12.1 + wget https://github.com/lamyj/odil/archive/v0.12.2.tar.gz + tar -x -f v0.12.2.tar.gz + cd odil-0.12.2 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.12.1 + git checkout v0.12.2 Build options -------------