Skip to content

Commit e64e4dd

Browse files
committed
Bump for v2.0.1
1 parent 2d79db7 commit e64e4dd

File tree

3 files changed

+20
-7
lines changed

3 files changed

+20
-7
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
- [libassert 2.0.1](#libassert-201)
12
- [libassert 2.0.0](#libassert-200)
23
- [libassert 2.0.0-beta](#libassert-200-beta)
34
- [libassert 2.0.0-alpha](#libassert-200-alpha)
@@ -7,6 +8,18 @@
78
- [libassert 1.1](#libassert-11)
89
- [libassert 1.0 🎉](#libassert-10-)
910

11+
## libassert 2.0.1
12+
13+
Fixed:
14+
- Fixed issue with determining stringifiability when `T::value_type` is a class named `value_type` with a constructor
15+
https://github.com/jeremy-rifkin/libassert/issues/90
16+
- Fixed issue with an incorrect header being imported in `assert-gtest.hpp`
17+
https://github.com/jeremy-rifkin/libassert/issues/87
18+
19+
Other:
20+
- Improved internal string formatting
21+
- Improved Catch2 support
22+
1023
## libassert 2.0.0
1124

1225
Changes since v1:

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ set(package_name "libassert")
1111
# create base project
1212
project(
1313
libassert
14-
VERSION 2.0.0
14+
VERSION 2.0.1
1515
DESCRIPTION "The most over-engineered C++ assertion library"
1616
HOMEPAGE_URL "https://github.com/jeremy-rifkin/libassert"
1717
LANGUAGES CXX

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ include(FetchContent)
113113
FetchContent_Declare(
114114
libassert
115115
GIT_REPOSITORY https://github.com/jeremy-rifkin/libassert.git
116-
GIT_TAG v2.0.0 # <HASH or TAG>
116+
GIT_TAG v2.0.1 # <HASH or TAG>
117117
)
118118
FetchContent_MakeAvailable(libassert)
119119
target_link_libraries(your_target libassert::assert)
@@ -802,7 +802,7 @@ include(FetchContent)
802802
FetchContent_Declare(
803803
libassert
804804
GIT_REPOSITORY https://github.com/jeremy-rifkin/libassert.git
805-
GIT_TAG v2.0.0 # <HASH or TAG>
805+
GIT_TAG v2.0.1 # <HASH or TAG>
806806
)
807807
FetchContent_MakeAvailable(libassert)
808808
target_link_libraries(your_target libassert::assert)
@@ -817,7 +817,7 @@ information.
817817

818818
```sh
819819
git clone https://github.com/jeremy-rifkin/libassert.git
820-
git checkout v2.0.0
820+
git checkout v2.0.1
821821
mkdir libassert/build
822822
cd libassert/build
823823
cmake .. -DCMAKE_BUILD_TYPE=Release
@@ -853,7 +853,7 @@ you when installing new libraries.
853853

854854
```ps1
855855
git clone https://github.com/jeremy-rifkin/libassert.git
856-
git checkout v2.0.0
856+
git checkout v2.0.1
857857
mkdir libassert/build
858858
cd libassert/build
859859
cmake .. -DCMAKE_BUILD_TYPE=Release
@@ -871,7 +871,7 @@ To install just for the local user (or any custom prefix):
871871

872872
```sh
873873
git clone https://github.com/jeremy-rifkin/libassert.git
874-
git checkout v2.0.0
874+
git checkout v2.0.1
875875
mkdir libassert/build
876876
cd libassert/build
877877
cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=$HOME/wherever
@@ -920,7 +920,7 @@ Libassert is available through conan at https://conan.io/center/recipes/libasser
920920

921921
```
922922
[requires]
923-
libassert/2.0.0
923+
libassert/2.0.1
924924
[generators]
925925
CMakeDeps
926926
CMakeToolchain

0 commit comments

Comments
 (0)