Skip to content

Commit

Permalink
chore: update changelog and bump version for 4.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
abdes committed Apr 3, 2022
1 parent 0bfdbb5 commit d7e4aa5
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 13 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@

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.2.0](http://github.com/abdes/asap/compare/v4.1.8...v4.2.0) (2022-04-03)


### Features

* make ccache usable on all platforms ([412730f](http://github.com/abdes/asap/commit/412730f86679d7ccd350cadf5649b7a489376cae))


### Bug Fixes

* use only white-listed properties for interface library ([227de02](http://github.com/abdes/asap/commit/227de026878beb9dd9679d0cad12cf25bce16c4a))

## [4.1.8](http://github.com/abdes/asap/compare/v4.1.7...v4.1.8) (2022-03-15)

- chore: use [CPM](https://github.com/cpm-cmake/CPM.cmake#adding-cpm) for
Expand Down
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,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 "1")
set(META_VERSION_PATCH "8")
set(META_VERSION_MINOR "2")
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})")
Expand Down
25 changes: 14 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

![Start Now!!](doc/_static/logo.png "ASAP Logo")

[![Build Matrix](https://github.com/abdes/asap/actions/workflows/cmake-build.yml/badge.svg?branch=develop)](https://github.com/abdes/asap/actions/workflows/cmake-build.yml)
[![Build Matrix](https://github.com/abdes/asap/actions/workflows/cmake-build.yml/badge.svg?branch=master)](https://github.com/abdes/asap/actions/workflows/cmake-build.yml)

## [Project Documentation](https://abdes.github.io/asap/asap_master/html/)

Expand Down Expand Up @@ -36,16 +36,6 @@ NOTES:
Make sure you have a C++ compiler with C++-17 capabilities at least. Gnu, Clang and MSVC all can do
that with a recent version.

## Enabling husky/commitlint/standard-version

Only one time after the project is cloned, do the following:

```bash
npx husky install
npm install -g @commitlint/cli @commitlint/config-conventional
npm install -g standard-version
```

## Building

```bash
Expand All @@ -68,3 +58,16 @@ option(ASAP_WITH_GOOGLE_UBSAN "Instrument code with undefined behavior sanitiz
option(ASAP_WITH_GOOGLE_TSAN "Instrument code with thread sanitizer" OFF)
option(ASAP_WITH_VALGRIND "Builds targets with valgrind profilers added" OFF)
```

## Making changes to this project

Read the [developer guides](https://abdes.github.io/asap/master/html/).
If you're in a hurry, at least do the following:

Only one time after the project is cloned, do the following:

```bash
npx husky install
npm install -g @commitlint/cli @commitlint/config-conventional
npm install -g standard-version
```

0 comments on commit d7e4aa5

Please sign in to comment.