Skip to content

Commit

Permalink
Bump for v2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremy-rifkin committed Apr 3, 2024
1 parent 2d79db7 commit e64e4dd
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 7 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
- [libassert 2.0.1](#libassert-201)
- [libassert 2.0.0](#libassert-200)
- [libassert 2.0.0-beta](#libassert-200-beta)
- [libassert 2.0.0-alpha](#libassert-200-alpha)
Expand All @@ -7,6 +8,18 @@
- [libassert 1.1](#libassert-11)
- [libassert 1.0 🎉](#libassert-10-)

## libassert 2.0.1

Fixed:
- Fixed issue with determining stringifiability when `T::value_type` is a class named `value_type` with a constructor
https://github.com/jeremy-rifkin/libassert/issues/90
- Fixed issue with an incorrect header being imported in `assert-gtest.hpp`
https://github.com/jeremy-rifkin/libassert/issues/87

Other:
- Improved internal string formatting
- Improved Catch2 support

## libassert 2.0.0

Changes since v1:
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ set(package_name "libassert")
# create base project
project(
libassert
VERSION 2.0.0
VERSION 2.0.1
DESCRIPTION "The most over-engineered C++ assertion library"
HOMEPAGE_URL "https://github.com/jeremy-rifkin/libassert"
LANGUAGES CXX
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ include(FetchContent)
FetchContent_Declare(
libassert
GIT_REPOSITORY https://github.com/jeremy-rifkin/libassert.git
GIT_TAG v2.0.0 # <HASH or TAG>
GIT_TAG v2.0.1 # <HASH or TAG>
)
FetchContent_MakeAvailable(libassert)
target_link_libraries(your_target libassert::assert)
Expand Down Expand Up @@ -802,7 +802,7 @@ include(FetchContent)
FetchContent_Declare(
libassert
GIT_REPOSITORY https://github.com/jeremy-rifkin/libassert.git
GIT_TAG v2.0.0 # <HASH or TAG>
GIT_TAG v2.0.1 # <HASH or TAG>
)
FetchContent_MakeAvailable(libassert)
target_link_libraries(your_target libassert::assert)
Expand All @@ -817,7 +817,7 @@ information.

```sh
git clone https://github.com/jeremy-rifkin/libassert.git
git checkout v2.0.0
git checkout v2.0.1
mkdir libassert/build
cd libassert/build
cmake .. -DCMAKE_BUILD_TYPE=Release
Expand Down Expand Up @@ -853,7 +853,7 @@ you when installing new libraries.

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

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

```
[requires]
libassert/2.0.0
libassert/2.0.1
[generators]
CMakeDeps
CMakeToolchain
Expand Down

0 comments on commit e64e4dd

Please sign in to comment.