Skip to content

Commit

Permalink
Version bump.
Browse files Browse the repository at this point in the history
  • Loading branch information
lemire committed Jun 11, 2023
1 parent b5939ab commit 82e3db5
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ if(CMAKE_C_COMPILER_ID STREQUAL "AppleClang" AND CMAKE_C_COMPILER_VERSION VERSIO
endif()
set(ROARING_LIB_NAME roaring)
set(PROJECT_VERSION_MAJOR 1)
set(PROJECT_VERSION_MINOR 1)
set(PROJECT_VERSION_PATCH 6)
set(ROARING_LIB_VERSION "1.1.6" CACHE STRING "Roaring library version")
set(ROARING_LIB_SOVERSION "10" CACHE STRING "Roaring library soversion")
set(PROJECT_VERSION_MINOR 2)
set(PROJECT_VERSION_PATCH 0)
set(ROARING_LIB_VERSION "1.2.0" CACHE STRING "Roaring library version")
set(ROARING_LIB_SOVERSION "11" CACHE STRING "Roaring library soversion")

option(ROARING_EXCEPTIONS "Enable exception-throwing interface" ON)
if(NOT ROARING_EXCEPTIONS)
Expand Down
2 changes: 1 addition & 1 deletion doxygen
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ PROJECT_NAME = "CRoaring"
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = "1.1.6"
PROJECT_NUMBER = "1.2.0"

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
Expand Down
6 changes: 3 additions & 3 deletions include/roaring/roaring_version.h
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
// /include/roaring/roaring_version.h automatically generated by release.py, do not change by hand
#ifndef ROARING_INCLUDE_ROARING_VERSION
#define ROARING_INCLUDE_ROARING_VERSION
#define ROARING_VERSION "1.1.6"
#define ROARING_VERSION "1.2.0"
enum {
ROARING_VERSION_MAJOR = 1,
ROARING_VERSION_MINOR = 1,
ROARING_VERSION_REVISION = 6
ROARING_VERSION_MINOR = 2,
ROARING_VERSION_REVISION = 0
};
#endif // ROARING_INCLUDE_ROARING_VERSION

0 comments on commit 82e3db5

Please sign in to comment.