diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 1373844..f9398cf 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.12.2 +current_version = 0.13.0 commit = True tag = True sign_tags = True diff --git a/CMakeLists.txt b/CMakeLists.txt index 3c689bd..b6fdcf3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -5,7 +5,7 @@ else() cmake_policy(SET CMP0074 NEW) endif() -project("Odil" VERSION 0.12.2) +project("Odil" VERSION 0.13.0) 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 9a02325..1814f3c 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.2.tar.gz - tar -x -f v0.12.2.tar.gz - cd odil-0.12.2 + wget https://github.com/lamyj/odil/archive/v0.13.0.tar.gz + tar -x -f v0.13.0.tar.gz + cd odil-0.13.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.12.2 + git checkout v0.13.0 Build options -------------