From 261080c4acb5338e939097fe61dbbccc85678ead Mon Sep 17 00:00:00 2001 From: Abdessattar Sassi <457645+abdes@users.noreply.github.com> Date: Sat, 6 Nov 2021 17:36:34 +0400 Subject: [PATCH] chore: update files for release 2.0.0 --- CHANGELOG.md | 27 +++++++++++++++++++++++++++ CMakeLists.txt | 2 +- 2 files changed, 28 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b7452c8..24d4564 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,33 @@ 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. +## [2.0.0](http://github.com/abdes/asap/compare/v1.0.0...v2.0.0) (2021-11-06) + +### Features + +* Cleanup the code to remove most compiler and linter warnings. +* Refactor cmake build files to have robust support for sanitizers and linters. +* Rationalize the compiler options to strictly stick to those options that won't + conflict with application decisions. +* Enhanced the documentation + +### To be continued + +* Refactoring of cmake build files. +* Remove additional warnings from code. +* Documenattion. + +### ⚠ BREAKING CHANGES + +* logging is in a new module: asap::logging. + +Many modules would want to only get the basic common functionality +without pulling extra 3rd party dependencies such as spdlog, fmt etc... +For this reason, the logging functionality is taken out of the common +submodule and moved to logging submodule. + +* move logging functionality to separate module ([46f4dd9](http://github.com/abdes/asap/commit/46f4dd96edb1148e0772a1539b989fd80f3821e4)) + ## 1.0.0 (2021-11-03) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5475a40..2dbcc89 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -56,7 +56,7 @@ set(META_GITHUB_USER "abdes") set(META_GITHUB_REPO "asap") set(META_AUTHOR_DOMAIN "https://github.com/abdes/asap") set(META_AUTHOR_MAINTAINER "Abdessattar Sassi") -set(META_VERSION_MAJOR "1") +set(META_VERSION_MAJOR "2") set(META_VERSION_MINOR "0") set(META_VERSION_PATCH "0") set(META_VERSION_REVISION "${GIT_REV}")