[PATCH] build: Fix version in CMakeLists.txt

  • From: Dimitri Staessens <dimitri@ouroboros.rocks>
  • To: ouroboros@xxxxxxxxxxxxx
  • Date: Mon, 14 Jun 2021 20:03:49 +0200

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>
---
 CMakeLists.txt | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt
index a831027..4318564 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")
-- 
2.32.0


Other related posts:

  • » [PATCH] build: Fix version in CMakeLists.txt - Dimitri Staessens