diff --git a/CHANGELOG.md b/CHANGELOG.md index 0d4af2c0..e9e23187 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,4 @@ +- [libassert 2.0.2](#libassert-202) - [libassert 2.0.1](#libassert-201) - [libassert 2.0.0](#libassert-200) - [libassert 2.0.0-beta](#libassert-200-beta) @@ -8,6 +9,15 @@ - [libassert 1.1](#libassert-11) - [libassert 1.0 🎉](#libassert-10-) +## libassert 2.0.2 + +Fixed: +- Fixed minor issue with `LIBASSERT_USE_MAGIC_ENUM` handling in libassert-config.cmake +- Fixed handling of edge case for internal string trimming utility + +Other: +- Bumped cpptrace to 0.5.3 + ## libassert 2.0.1 Fixed: diff --git a/CMakeLists.txt b/CMakeLists.txt index 106af31f..3e6070dc 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,7 +11,7 @@ set(package_name "libassert") # create base project project( libassert - VERSION 2.0.1 + VERSION 2.0.2 DESCRIPTION "The most over-engineered C++ assertion library" HOMEPAGE_URL "https://github.com/jeremy-rifkin/libassert" LANGUAGES CXX diff --git a/README.md b/README.md index 7c145b45..c895d6c6 100644 --- a/README.md +++ b/README.md @@ -113,7 +113,7 @@ include(FetchContent) FetchContent_Declare( libassert GIT_REPOSITORY https://github.com/jeremy-rifkin/libassert.git - GIT_TAG v2.0.1 # + GIT_TAG v2.0.2 # ) FetchContent_MakeAvailable(libassert) target_link_libraries(your_target libassert::assert) @@ -802,7 +802,7 @@ include(FetchContent) FetchContent_Declare( libassert GIT_REPOSITORY https://github.com/jeremy-rifkin/libassert.git - GIT_TAG v2.0.1 # + GIT_TAG v2.0.2 # ) FetchContent_MakeAvailable(libassert) target_link_libraries(your_target libassert::assert) @@ -817,7 +817,7 @@ information. ```sh git clone https://github.com/jeremy-rifkin/libassert.git -git checkout v2.0.1 +git checkout v2.0.2 mkdir libassert/build cd libassert/build cmake .. -DCMAKE_BUILD_TYPE=Release @@ -853,7 +853,7 @@ you when installing new libraries. ```ps1 git clone https://github.com/jeremy-rifkin/libassert.git -git checkout v2.0.1 +git checkout v2.0.2 mkdir libassert/build cd libassert/build cmake .. -DCMAKE_BUILD_TYPE=Release @@ -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.1 +git checkout v2.0.2 mkdir libassert/build cd libassert/build 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 ``` [requires] -libassert/2.0.1 +libassert/2.0.2 [generators] CMakeDeps CMakeToolchain