From 3fa688d30a1bbaccbfcf95ce8c674e6d75ea0453 Mon Sep 17 00:00:00 2001 From: Daniel Lemire Date: Fri, 15 Dec 2023 21:51:46 -0500 Subject: [PATCH] version bump --- CMakeLists.txt | 8 ++++---- README.md | 6 +++--- doxygen | 2 +- include/roaring/roaring_version.h | 6 +++--- 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 2bfb81e1d..9218de391 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -16,10 +16,10 @@ if(CMAKE_C_COMPILER_ID STREQUAL "AppleClang" AND CMAKE_C_COMPILER_VERSION VERSIO endif() set(ROARING_LIB_NAME roaring) set(PROJECT_VERSION_MAJOR 2) -set(PROJECT_VERSION_MINOR 0) -set(PROJECT_VERSION_PATCH 5) -set(ROARING_LIB_VERSION "2.0.5" CACHE STRING "Roaring library version") -set(ROARING_LIB_SOVERSION "13" CACHE STRING "Roaring library soversion") +set(PROJECT_VERSION_MINOR 1) +set(PROJECT_VERSION_PATCH 0) +set(ROARING_LIB_VERSION "2.1.0" CACHE STRING "Roaring library version") +set(ROARING_LIB_SOVERSION "14" CACHE STRING "Roaring library soversion") option(ROARING_EXCEPTIONS "Enable exception-throwing interface" ON) if(NOT ROARING_EXCEPTIONS) diff --git a/README.md b/README.md index bdafc3194..498fee900 100644 --- a/README.md +++ b/README.md @@ -82,9 +82,9 @@ Linux or macOS users might follow the following instructions if they have a rece 1. Pull the library in a directory ``` - wget https://github.com/RoaringBitmap/CRoaring/releases/download/v2.0.5/roaring.c - wget https://github.com/RoaringBitmap/CRoaring/releases/download/v2.0.5/roaring.h - wget https://github.com/RoaringBitmap/CRoaring/releases/download/v2.0.5/roaring.hh + wget https://github.com/RoaringBitmap/CRoaring/releases/download/v2.1.0/roaring.c + wget https://github.com/RoaringBitmap/CRoaring/releases/download/v2.1.0/roaring.h + wget https://github.com/RoaringBitmap/CRoaring/releases/download/v2.1.0/roaring.hh ``` 2. Create a new file named `demo.c` with this content: ```C diff --git a/doxygen b/doxygen index 984d1d877..4c8df1a9f 100644 --- a/doxygen +++ b/doxygen @@ -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 = "2.0.5" +PROJECT_NUMBER = "2.1.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 diff --git a/include/roaring/roaring_version.h b/include/roaring/roaring_version.h index 83137675b..78db85881 100644 --- a/include/roaring/roaring_version.h +++ b/include/roaring/roaring_version.h @@ -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 "2.0.5" +#define ROARING_VERSION "2.1.0" enum { ROARING_VERSION_MAJOR = 2, - ROARING_VERSION_MINOR = 0, - ROARING_VERSION_REVISION = 5 + ROARING_VERSION_MINOR = 1, + ROARING_VERSION_REVISION = 0 }; #endif // ROARING_INCLUDE_ROARING_VERSION