From ec44c7bc42d39effa85cbf175882978d77c0cd56 Mon Sep 17 00:00:00 2001 From: Julien Lamy Date: Thu, 1 Feb 2024 09:37:51 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.12.2=20=E2=86=92=200.13.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- CMakeLists.txt | 2 +- documentation/installation/index.rst | 8 ++++---- 3 files changed, 6 insertions(+), 6 deletions(-) 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 -------------