From c26b173a7330ef9baaa24b8a32ad656232ac9a57 Mon Sep 17 00:00:00 2001 From: techbech Date: Fri, 6 Oct 2023 15:11:40 +0200 Subject: [PATCH] Preparing to create tag 5.2.1 --- NEWS.rst | 4 ++++ src/abacus/version.cpp | 2 +- src/abacus/version.hpp | 2 +- wscript | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/NEWS.rst b/NEWS.rst index 55d290b..feeb79a 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -6,6 +6,10 @@ every change, see the Git log. Latest ------ +* tbd + +5.2.1 +----- * Patch: Bumped protobuf version to 2.0.4. 5.2.0 diff --git a/src/abacus/version.cpp b/src/abacus/version.cpp index 39ff03a..49dc031 100644 --- a/src/abacus/version.cpp +++ b/src/abacus/version.cpp @@ -12,7 +12,7 @@ inline namespace STEINWURF_ABACUS_VERSION { std::string version() { - return "5.2.0"; + return "5.2.1"; } } } diff --git a/src/abacus/version.hpp b/src/abacus/version.hpp index 62e7853..4a350f6 100644 --- a/src/abacus/version.hpp +++ b/src/abacus/version.hpp @@ -11,7 +11,7 @@ namespace abacus { /// Here we define the STEINWURF_ABACUS_VERSION this should be updated on each /// release -#define STEINWURF_ABACUS_VERSION v5_2_0 +#define STEINWURF_ABACUS_VERSION v5_2_1 inline namespace STEINWURF_ABACUS_VERSION { diff --git a/wscript b/wscript index 5556ad0..613a58a 100644 --- a/wscript +++ b/wscript @@ -7,7 +7,7 @@ from waflib.Build import BuildContext APPNAME = "abacus" -VERSION = "5.2.0" +VERSION = "5.2.1" def configure(conf):