From 63c4706ad1dd86f4a01340b795bbd37371d1e77b Mon Sep 17 00:00:00 2001 From: Kim Walisch Date: Mon, 11 Sep 2023 20:23:32 +0200 Subject: [PATCH] Increase version to 7.10 --- CMakeLists.txt | 2 +- ChangeLog | 5 +++++ include/primecount.h | 4 ++-- include/primecount.hpp | 4 ++-- 4 files changed, 10 insertions(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b7eee6eb..cc8871be 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.4...3.22) project(primecount CXX) set(PRIMECOUNT_VERSION_MAJOR 7) -set(PRIMECOUNT_VERSION_MINOR 9) +set(PRIMECOUNT_VERSION_MINOR 10) set(PRIMECOUNT_VERSION "${PRIMECOUNT_VERSION_MAJOR}.${PRIMECOUNT_VERSION_MINOR}") # Build options ###################################################### diff --git a/ChangeLog b/ChangeLog index cca0df42..85a7bbda 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Changes in primecount-7.10, 2023-09-11 + +* .github/workflows/ci.yml: Port AppVeyor CI tests to GitHub Actions. +* Update to latest primesieve-11.2 library. + Changes in primecount-7.9, 2023-04-03 The focus of this release has been to improve primecount's test suite. diff --git a/include/primecount.h b/include/primecount.h index 14b2a288..7b9ebd83 100644 --- a/include/primecount.h +++ b/include/primecount.h @@ -16,9 +16,9 @@ #include #include -#define PRIMECOUNT_VERSION "7.9" +#define PRIMECOUNT_VERSION "7.10" #define PRIMECOUNT_VERSION_MAJOR 7 -#define PRIMECOUNT_VERSION_MINOR 9 +#define PRIMECOUNT_VERSION_MINOR 10 #ifdef __cplusplus extern "C" { diff --git a/include/primecount.hpp b/include/primecount.hpp index 2221acb5..6c5cbe60 100644 --- a/include/primecount.hpp +++ b/include/primecount.hpp @@ -17,9 +17,9 @@ #include #include -#define PRIMECOUNT_VERSION "7.9" +#define PRIMECOUNT_VERSION "7.10" #define PRIMECOUNT_VERSION_MAJOR 7 -#define PRIMECOUNT_VERSION_MINOR 9 +#define PRIMECOUNT_VERSION_MINOR 10 namespace primecount {