From 4c174d9383bdf0c61ef6cbc8b43d7bed4af73127 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mikkel=20H=C3=B8jlund=20Larsen?= Date: Wed, 10 Jan 2024 14:34:45 +0100 Subject: [PATCH] Preparing to create tag 6.0.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 3bfccc5..e16066c 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -6,6 +6,10 @@ every change, see the Git log. Latest ------ +* tbd + +6.0.1 +----- * Patch: Fix a bug where one could assign Nan, Inf or -Inf to a float64 metric. 6.0.0 diff --git a/src/abacus/version.cpp b/src/abacus/version.cpp index 49cf263..0efae3c 100644 --- a/src/abacus/version.cpp +++ b/src/abacus/version.cpp @@ -12,7 +12,7 @@ inline namespace STEINWURF_ABACUS_VERSION { std::string version() { - return "6.0.0"; + return "6.0.1"; } } } diff --git a/src/abacus/version.hpp b/src/abacus/version.hpp index 3a937be..441e8b4 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 v6_0_0 +#define STEINWURF_ABACUS_VERSION v6_0_1 inline namespace STEINWURF_ABACUS_VERSION { diff --git a/wscript b/wscript index b61a581..77cecec 100644 --- a/wscript +++ b/wscript @@ -7,7 +7,7 @@ from waflib.Build import BuildContext APPNAME = "abacus" -VERSION = "6.0.0" +VERSION = "6.0.1" def configure(conf):