This is an automated email from the ASF dual-hosted git repository. lordgamez pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/nifi-minifi-cpp.git
commit c8a70e228c9d2e69d25d5867cde0287bf31d151e Author: Marton Szasz <[email protected]> AuthorDate: Tue Feb 18 18:40:25 2025 +0100 MINIFICPP-2526 update version to 1.0 Signed-off-by: Marton Szasz <[email protected]> Signed-off-by: Gabor Gyimesi <[email protected]> This closes #1931 --- CMakeLists.txt | 2 +- conanfile.py | 2 +- libminifi/CMakeLists.txt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c1cc6a601..9a01eccc3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -22,7 +22,7 @@ cmake_policy(SET CMP0096 NEW) # policy to preserve the leading zeros in PROJECT_ cmake_policy(SET CMP0065 OLD) # default export policy, required for self-dlopen cmake_policy(SET CMP0135 NEW) # policy to set the timestamps of extracted contents to the time of extraction -project(nifi-minifi-cpp VERSION 0.99.1) +project(nifi-minifi-cpp VERSION 1.0.0) set(PROJECT_NAME "nifi-minifi-cpp") if (NOT CMAKE_BUILD_TYPE) diff --git a/conanfile.py b/conanfile.py index 5dd4db1fc..f4bf443de 100644 --- a/conanfile.py +++ b/conanfile.py @@ -14,7 +14,7 @@ shared_sources = ("CMakeLists.txt", "libminifi/*", "extensions/*", "minifi_main/ class MiNiFiCppMain(ConanFile): name = "minifi-cpp" - version = "0.99.1" + version = "1.0.0" license = "Apache-2.0" requires = shared_requires settings = "os", "compiler", "build_type", "arch" diff --git a/libminifi/CMakeLists.txt b/libminifi/CMakeLists.txt index b10ef2ca8..00da5e67e 100644 --- a/libminifi/CMakeLists.txt +++ b/libminifi/CMakeLists.txt @@ -20,7 +20,7 @@ cmake_minimum_required (VERSION 3.24) cmake_policy(SET CMP0096 NEW) # policy to preserve the leading zeros in PROJECT_VERSION_{MAJOR,MINOR,PATCH,TWEAK} cmake_policy(SET CMP0135 NEW) # policy to set the timestamps of extracted contents to the time of extraction -project(nifi-libcore-minifi VERSION 0.99.1) +project(nifi-libcore-minifi VERSION 1.0.0) set(PROJECT_NAME "nifi-libcore-minifi") if (WIN32)
