Skip to content

Commit

Permalink
Increase version to 7.10
Browse files Browse the repository at this point in the history
  • Loading branch information
kimwalisch committed Sep 11, 2023
1 parent 4725632 commit 63c4706
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -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 ######################################################
Expand Down
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
4 changes: 2 additions & 2 deletions include/primecount.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
#include <stddef.h>
#include <stdint.h>

#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" {
Expand Down
4 changes: 2 additions & 2 deletions include/primecount.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
#include <string>
#include <stdint.h>

#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 {

Expand Down

0 comments on commit 63c4706

Please sign in to comment.