From 31914988556ba073c53caa9e5879b5072519f61a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrien=20B=C3=A9raud?= Date: Sun, 24 Sep 2023 18:13:08 -0400 Subject: [PATCH] update version to 3.0.0 --- CMakeLists.txt | 4 ++-- configure.ac | 4 ++-- meson.build | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5c8463221..13bb1b3a9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -14,8 +14,8 @@ include(FindPkgConfig) include(cmake/CheckAtomic.cmake) include(CTest) -set (opendht_VERSION_MAJOR 2) -set (opendht_VERSION_MINOR 6.0) +set (opendht_VERSION_MAJOR 3) +set (opendht_VERSION_MINOR 0.0) set (opendht_VERSION ${opendht_VERSION_MAJOR}.${opendht_VERSION_MINOR}) set (PACKAGE_VERSION ${opendht_VERSION}) set (VERSION "${opendht_VERSION}") diff --git a/configure.ac b/configure.ac index e75442a62..2e54c1d63 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ dnl define macros -m4_define([opendht_major_version], 2) -m4_define([opendht_minor_version], 6) +m4_define([opendht_major_version], 3) +m4_define([opendht_minor_version], 0) m4_define([opendht_patch_version], 0) m4_define([opendht_version], [opendht_major_version.opendht_minor_version.opendht_patch_version]) diff --git a/meson.build b/meson.build index 7d6352f9c..e93393c6b 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('opendht', 'c', 'cpp', - version: '2.6.0', + version: '3.0.0', default_options: [ 'cpp_std=c++17', 'warning_level=3'