Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
lemire committed Dec 16, 2023
1 parent 7b3da10 commit 2dbce6b
Show file tree
Hide file tree
Showing 4 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
Expand Up @@ -17,8 +17,8 @@ endif()
set(ROARING_LIB_NAME roaring)
set(PROJECT_VERSION_MAJOR 2)
set(PROJECT_VERSION_MINOR 0)
set(PROJECT_VERSION_PATCH 4)
set(ROARING_LIB_VERSION "2.0.4" CACHE STRING "Roaring library version")
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")

option(ROARING_EXCEPTIONS "Enable exception-throwing interface" ON)
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.4/roaring.c
wget https://github.com/RoaringBitmap/CRoaring/releases/download/v2.0.4/roaring.h
wget https://github.com/RoaringBitmap/CRoaring/releases/download/v2.0.4/roaring.hh
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
```
2. Create a new file named `demo.c` with this content:
```C
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 = "2.0.4"
PROJECT_NUMBER = "2.0.5"

# 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
4 changes: 2 additions & 2 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 "2.0.4"
#define ROARING_VERSION "2.0.5"
enum {
ROARING_VERSION_MAJOR = 2,
ROARING_VERSION_MINOR = 0,
ROARING_VERSION_REVISION = 4
ROARING_VERSION_REVISION = 5
};
#endif // ROARING_INCLUDE_ROARING_VERSION

0 comments on commit 2dbce6b

Please sign in to comment.