summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDimitri Staessens <dimitri@ouroboros.rocks>2021-06-14 20:03:49 +0200
committerSander Vrijders <sander@ouroboros.rocks>2021-06-18 08:44:22 +0200
commit19aa8f61863234556d00094e1ecf9fd645a41cb6 (patch)
tree34b2c25393f0f150ce52c6605e60de789376a5cd
parentf44ff4dc6d903a626f86919567ce382be31eb3b2 (diff)
downloadouroboros-19aa8f61863234556d00094e1ecf9fd645a41cb6.tar.gz
ouroboros-19aa8f61863234556d00094e1ecf9fd645a41cb6.zip
build: Fix version in CMakeLists.txt
The tag was set to 0.18, but the version was still at 17.5 in CMake. Signed-off-by: Dimitri Staessens <dimitri@ouroboros.rocks> Signed-off-by: Sander Vrijders <sander@ouroboros.rocks>
-rw-r--r--CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index a8310274..43185641 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -8,8 +8,8 @@ project(ouroboros C)
include(GNUInstallDirs)
set(PACKAGE_VERSION_MAJOR 0)
-set(PACKAGE_VERSION_MINOR 17)
-set(PACKAGE_VERSION_PATCH 5)
+set(PACKAGE_VERSION_MINOR 18)
+set(PACKAGE_VERSION_PATCH 0)
set(PACKAGE_NAME "${CMAKE_PROJECT_NAME}")
set(PACKAGE_DESCRIPTION "The Ouroboros prototype")