From 80541c47bc4c7a6baa205136ca558860cb5e61af Mon Sep 17 00:00:00 2001 From: Daniele Pallastrelli <5451767+daniele77@users.noreply.github.com> Date: Fri, 25 Oct 2024 23:38:32 +0200 Subject: [PATCH] Bump version --- CHANGELOG.md | 8 ++++---- CMakeLists.txt | 2 +- doc/doxy/Doxyfile | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 085641f..38d4e8d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,16 +3,16 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## Unreleased +## [2.2.0] - 2024-10-25 - - Fix issue with remote session on ARM platforms (issue [#220](https://github.com/daniele77/cli/issues/220)) + - Add clear screen command using ctrl + L (issue [#229](https://github.com/daniele77/cli/issues/229)) + - Add history view and execute an history command with bang + id (issue [#235](https://github.com/daniele77/cli/issues/235)) - Custom handler for wrong commands (issue [#223](https://github.com/daniele77/cli/issues/223)) - Parent menus does not chain (issue [#234](https://github.com/daniele77/cli/issues/234)) - Parent menu shortcut (issue [#233](https://github.com/daniele77/cli/issues/233)) - Integer overflow warning detected by clang++ (issue [#236](https://github.com/daniele77/cli/issues/236)) - Enable Keyboard Handling in Command Handlers on Linux Platform (issue [#239](https://github.com/daniele77/cli/issues/239)) - - Add clear screen command using ctrl + L (issue [#229](https://github.com/daniele77/cli/issues/229)) - - Add history view and execute an history command with bang + id (issue [#235](https://github.com/daniele77/cli/issues/235)) + - Fix issue with remote session on ARM platforms (issue [#220](https://github.com/daniele77/cli/issues/220)) ## [2.1.0] - 2023-06-29 diff --git a/CMakeLists.txt b/CMakeLists.txt index 69afd69..4ca6aa6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,7 +31,7 @@ cmake_minimum_required(VERSION 3.8) project( cli - VERSION 2.1.0 + VERSION 2.2.0 # DESCRIPTION "A library for interactive command line interfaces in modern C++" LANGUAGES CXX ) diff --git a/doc/doxy/Doxyfile b/doc/doxy/Doxyfile index d487e53..4ec97f1 100644 --- a/doc/doxy/Doxyfile +++ b/doc/doxy/Doxyfile @@ -29,7 +29,7 @@ #--------------------------------------------------------------------------- PROJECT_NAME = "Interactive CLI" -PROJECT_NUMBER = 2.1 +PROJECT_NUMBER = 2.2 #--------------------------------------------------------------------------- FULL_PATH_NAMES = NO #---------------------------------------------------------------------------