From 19aa8f61863234556d00094e1ecf9fd645a41cb6 Mon Sep 17 00:00:00 2001 From: Dimitri Staessens Date: Mon, 14 Jun 2021 20:03:49 +0200 Subject: 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 Signed-off-by: Sander Vrijders --- CMakeLists.txt | 4 ++-- 1 file 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") -- cgit v1.2.3