Skip to content

Commit

Permalink
Increase version number
Browse files Browse the repository at this point in the history
  • Loading branch information
kimwalisch committed Feb 19, 2021
1 parent 4981c10 commit 6ed5436
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 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.19)
project(primesieve CXX)
set(PRIMESIEVE_VERSION "7.6")
set(PRIMESIEVE_SOVERSION "9.6.0")
set(PRIMESIEVE_VERSION "7.7")
set(PRIMESIEVE_SOVERSION "9.7.0")

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

Expand Down
6 changes: 3 additions & 3 deletions include/primesieve.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@
* number generation. In case an error occurs errno is set to
* EDOM and PRIMESIEVE_ERROR is returned.
*
* Copyright (C) 2020 Kim Walisch, <kim.walisch@gmail.com>
* Copyright (C) 2021 Kim Walisch, <kim.walisch@gmail.com>
*
* This file is distributed under the BSD License.
*/

#ifndef PRIMESIEVE_H
#define PRIMESIEVE_H

#define PRIMESIEVE_VERSION "7.6"
#define PRIMESIEVE_VERSION "7.7"
#define PRIMESIEVE_VERSION_MAJOR 7
#define PRIMESIEVE_VERSION_MINOR 6
#define PRIMESIEVE_VERSION_MINOR 7

#include <primesieve/iterator.h>

Expand Down
6 changes: 3 additions & 3 deletions include/primesieve.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@
/// primesieve::primesieve_error exception (derived form
/// std::runtime_error) is thrown.
///
/// Copyright (C) 2020 Kim Walisch, <kim.walisch@gmail.com>
/// Copyright (C) 2021 Kim Walisch, <kim.walisch@gmail.com>
///
/// This file is distributed under the BSD License.
///

#ifndef PRIMESIEVE_HPP
#define PRIMESIEVE_HPP

#define PRIMESIEVE_VERSION "7.6"
#define PRIMESIEVE_VERSION "7.7"
#define PRIMESIEVE_VERSION_MAJOR 7
#define PRIMESIEVE_VERSION_MINOR 6
#define PRIMESIEVE_VERSION_MINOR 7

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

0 comments on commit 6ed5436

Please sign in to comment.