diff --git a/CHANGELOG.md b/CHANGELOG.md index df956c5..e7a8f34 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,25 @@ 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. +## [4.6.0](http://github.com/abdes/asap/compare/v4.5.2...v4.6.0) (2022-09-20) + +### Features + +* option to control the use of ccache, default is OFF ([49a17a9](http://github.com/abdes/asap/commit/49a17a99026ae7e59d14297d01ed2f8d10c78762)) + + More robust implementation of fatser builds with `ccache`. Caching is enabled in + GitHub CI builds and can be enabled in development environments by simply + setting the cmake variable `USE_CCACHE` to 'ON'/'TRUE' or equivalent. + + A precondition for the environment is of course to have `ccache` installed, + which gets done automatically in GitHub workflows, but needs to be done in + development environments. It is recommended to use brew/choco for MacOS/Windows, + but to install from the pre-built binaries for Linux as the version that comes + with most distros is quite old. + + It is to be noted that `ccache` with MSVC on Windows may have some issues and if + that is the case, simply do not use it. + ### [4.5.2](http://github.com/abdes/asap/compare/v4.5.1...v4.5.2) (2022-09-20) ### Bug Fixes diff --git a/CMakeLists.txt b/CMakeLists.txt index 2428f48..d926067 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -47,8 +47,8 @@ set(META_GITHUB_REPO "https://github.com/abdes/asap") set(META_AUTHOR_DOMAIN "https://github.com/abdes/asap") set(META_AUTHOR_MAINTAINER "Abdessattar Sassi") set(META_VERSION_MAJOR "4") -set(META_VERSION_MINOR "5") -set(META_VERSION_PATCH "2") +set(META_VERSION_MINOR "6") +set(META_VERSION_PATCH "0") 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})")