diff --git a/CHANGELOG.md b/CHANGELOG.md index 754a08d..30263a3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,19 @@ 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.4](http://github.com/abdes/asap/compare/v1.0.3...v1.0.4) (2022-03-15) + +### Features + +- refactor build to use CPM for cmake dependencies and speedup build with ccache. + +### Bug Fixes + +- missing intersphinx config for submodule ([dc2df5b](http://github.com/abdes/asap/commit/dc2df5bf299d65789f0d3054ac049d9108e9d2b8)) +- remove non-existing directory from library include dirs ([2f38810](http://github.com/abdes/asap/commit/2f38810813d6eb0b0a5059ecc3970314874815d9)) +- require c++-17 ([049d34c](http://github.com/abdes/asap/commit/049d34c73a02b23ca9dc776465d6029e940f7b23)) +- this library has no dependencies ([ada7303](http://github.com/abdes/asap/commit/ada730355b750514b04ac37190d5ab2f891db572)) + ## [1.0.3](http://github.com/abdes/asap/compare/v1.0.2...v1.0.3) (2022-03-06) ### Bug Fixes diff --git a/CMakeLists.txt b/CMakeLists.txt index f4c0334..ce1ced9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -40,7 +40,7 @@ set(META_AUTHOR_DOMAIN "https://github.com/asap-projects") set(META_AUTHOR_MAINTAINER "Abdessattar Sassi") set(META_VERSION_MAJOR "1") set(META_VERSION_MINOR "0") -set(META_VERSION_PATCH "3") +set(META_VERSION_PATCH "4") 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})")