Skip to content

Commit

Permalink
Increase version to 12.2
Browse files Browse the repository at this point in the history
  • Loading branch information
kimwalisch committed Mar 18, 2024
1 parent e82222f commit 7404dde
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.4...3.27)
project(primesieve CXX)
set(PRIMESIEVE_VERSION "12.1")
set(PRIMESIEVE_SOVERSION "12.1.0")
set(PRIMESIEVE_VERSION "12.2")
set(PRIMESIEVE_SOVERSION "12.2.0")

# Build options ######################################################

Expand Down
4 changes: 2 additions & 2 deletions include/primesieve.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
#ifndef PRIMESIEVE_H
#define PRIMESIEVE_H

#define PRIMESIEVE_VERSION "12.1"
#define PRIMESIEVE_VERSION "12.2"
#define PRIMESIEVE_VERSION_MAJOR 12
#define PRIMESIEVE_VERSION_MINOR 1
#define PRIMESIEVE_VERSION_MINOR 2

#include <primesieve/iterator.h>

Expand Down
4 changes: 2 additions & 2 deletions include/primesieve.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
#ifndef PRIMESIEVE_HPP
#define PRIMESIEVE_HPP

#define PRIMESIEVE_VERSION "12.1"
#define PRIMESIEVE_VERSION "12.2"
#define PRIMESIEVE_VERSION_MAJOR 12
#define PRIMESIEVE_VERSION_MINOR 1
#define PRIMESIEVE_VERSION_MINOR 2

#include <primesieve/iterator.hpp>
#include <primesieve/primesieve_error.hpp>
Expand Down

0 comments on commit 7404dde

Please sign in to comment.