From efeb0d83c479200e359407245f82000ee4f33558 Mon Sep 17 00:00:00 2001 From: Jean THOMAS <25333063+jeanthom@users.noreply.github.com> Date: Thu, 2 Dec 2021 00:32:13 +0100 Subject: [PATCH] Fix version number in CMakeLists.txt Current version number is stuck at 0.5.0... --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 9f5bdcc..cd2e15f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.0) # set the project name -project(openFPGALoader VERSION "0.5.0" LANGUAGES CXX) +project(openFPGALoader VERSION "0.6.0" LANGUAGES CXX) add_definitions(-DVERSION=\"v${PROJECT_VERSION}\") option(BUILD_STATIC "Whether or not to build with static libraries" OFF)