diff --git a/CHANGELOG.md b/CHANGELOG.md index 02a30bb..c4b6c05 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 0.1.1 (2024-01-17) + +- Fix argv for subcommand ([#3](https://github.com/tonyseek/trapit/pull/3) contributed by [@liuerfire](https://github.com/liuerfire)) + ## 0.1.0 (2023-02-02) - The first release which uses a UDP socket on a loopback address. ([#1](https://github.com/tonyseek/trapit/pull/1)) diff --git a/CMakeLists.txt b/CMakeLists.txt index d1075ec..0e5d236 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.22..3.25) -project(trapit VERSION 0.1.0) +project(trapit VERSION 0.1.1) set(CMAKE_CXX_STANDARD 17) set(CMAKE_EXPORT_COMPILE_COMMANDS ON)