From 33ffdeabc0703f0ff46417a868584d9662be300f Mon Sep 17 00:00:00 2001 From: Abdessattar Sassi <457645+abdes@users.noreply.github.com> Date: Sat, 20 Aug 2022 21:53:58 +0400 Subject: [PATCH] chore: version bump to 1.0.1 --- CHANGELOG.md | 20 +++++++++++++++++++- CMakeLists.txt | 2 +- 2 files changed, 20 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 82cc601..cbd2669 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,24 @@ # Changelog -All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +All notable changes to this project will be documented in this file. See +[standard-version](https://github.com/conventional-changelog/standard-version) +for commit guidelines. + +## [1.0.1](http://github.com/abdes/asap/compare/v1.0.0...v1.0.1) (2022-08-20) + +* code cleanup to eliminate compiler/linter warnings and improve code quality. + +### Bug Fixes + +* [#10](http://github.com/abdes/asap/issues/10) no more template export header + ([dd8ffd5](http://github.com/abdes/asap/commit/dd8ffd5a8f36340963349c7ebcb7c1713c2f880a)) +* [#11](http://github.com/abdes/asap/issues/11) refactor compiler options + management + ([78ae493](http://github.com/abdes/asap/commit/78ae4933f2e263a55f6537e66347c6b11a24b961)) +* [#12](http://github.com/abdes/asap/issues/12) disable used-but-marked-unused + ([6d42d83](http://github.com/abdes/asap/commit/6d42d83bfdd16123f05a69726058dc5f103143be)) +* [#9](http://github.com/abdes/asap/issues/9) remove no longer used function + ([5a7416f](http://github.com/abdes/asap/commit/5a7416f9563aae303d68ca2bb878fef97fbb7130)) ## 1.0.0 (2022-08-06) diff --git a/CMakeLists.txt b/CMakeLists.txt index cdaf26c..4474b1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -40,7 +40,7 @@ set(META_AUTHOR_DOMAIN "https://github.com/abdes") set(META_AUTHOR_MAINTAINER "Abdessattar Sassi") set(META_VERSION_MAJOR "1") set(META_VERSION_MINOR "0") -set(META_VERSION_PATCH "0") +set(META_VERSION_PATCH "1") set(META_VERSION_REVISION "${GIT_REV}") set(META_VERSION "${META_VERSION_MAJOR}.${META_VERSION_MINOR}.${META_VERSION_PATCH}") set(META_NAME_VERSION "${META_PROJECT_NAME} v${META_VERSION} (${META_VERSION_REVISION})")