From 7151819d07eaac2e77bc88a32de4a4577542caa4 Mon Sep 17 00:00:00 2001 From: Jeppe Pihl Date: Thu, 22 Jun 2023 13:52:10 +0200 Subject: [PATCH] Preparing to create tag 9.0.0 --- NEWS.rst | 4 ++++ src/cpuid/version.cpp | 2 +- src/cpuid/version.hpp | 2 +- wscript | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/NEWS.rst b/NEWS.rst index f588cb9..da93ea1 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -6,6 +6,10 @@ every change, see the Git log. Latest ------ +* tbd + +9.0.0 +----- * Major: Use waf-tools 5. * Minor: Added different AVX-512 extensions. * Minor: Updated waf. diff --git a/src/cpuid/version.cpp b/src/cpuid/version.cpp index 1e0fbfd..dd50392 100644 --- a/src/cpuid/version.cpp +++ b/src/cpuid/version.cpp @@ -12,7 +12,7 @@ inline namespace STEINWURF_CPUID_VERSION { std::string version() { - return "8.0.0"; + return "9.0.0"; } } } diff --git a/src/cpuid/version.hpp b/src/cpuid/version.hpp index 5715dce..62258d3 100644 --- a/src/cpuid/version.hpp +++ b/src/cpuid/version.hpp @@ -11,7 +11,7 @@ namespace cpuid { /// Here we define the STEINWURF_CPUID_VERSION this should be updated on each /// release -#define STEINWURF_CPUID_VERSION v8_0_0 +#define STEINWURF_CPUID_VERSION v9_0_0 inline namespace STEINWURF_CPUID_VERSION { diff --git a/wscript b/wscript index 305a67b..4e511f1 100644 --- a/wscript +++ b/wscript @@ -5,7 +5,7 @@ from waflib.Build import BuildContext import os APPNAME = "cpuid" -VERSION = "8.0.0" +VERSION = "9.0.0" def configure(conf):