diff --git a/CHANGELOG.md b/CHANGELOG.md index bae1bfb2..81dc4c89 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [0.6.0] - 2021-08-23 + +### Fixed + +- Bug wrt const return type path in type-caster (#83) +- Bug where TC input was copied (#83) +- Bug wrt handling of input arrays smaller than pre-allocation limit (#85) +- Remove unused variables (#84) + +### Enhancements + +- CARMA is now compatible with ``FIND_PACKAGE(carma CONFIG)`` (#81, #82) +- introduces ``to_numpy_view`` a read-only view on ArmaT as non-writeable array + ## [0.5.2] - 2021-07-19 ### Fixed diff --git a/CMakeLists.txt b/CMakeLists.txt index 0e0726bc..d5f06266 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,8 +1,8 @@ CMAKE_MINIMUM_REQUIRED(VERSION 3.16) SET(CARMA_VERSION_MAJOR 0) -SET(CARMA_VERSION_MINOR 5) -SET(CARMA_VERSION_PATCH 2) +SET(CARMA_VERSION_MINOR 6) +SET(CARMA_VERSION_PATCH 0) SET(CARMA_VERSION_INFO "${CARMA_VERSION_MAJOR}.${CARMA_VERSION_MINOR}.${CARMA_VERSION_PATCH}") PROJECT( diff --git a/docs/source/conf.py b/docs/source/conf.py index 4bd6a0b2..32226cdc 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -22,7 +22,7 @@ author = 'R. Urlus' # The full version, including alpha/beta/rc tags -release = '0.5.2' +release = '0.6.0' # -- General configuration --------------------------------------------------- diff --git a/include/carma b/include/carma index f9e55a27..ccc83f86 100644 --- a/include/carma +++ b/include/carma @@ -33,9 +33,9 @@ #ifndef CARMA_VERSION_MAJOR #define CARMA_VERSION_MAJOR 0 - #define CARMA_VERSION_MINOR 5 - #define CARMA_VERSION_PATCH 2 - #define CARMA_VERSION_NAME "0.5.2 HO" + #define CARMA_VERSION_MINOR 6 + #define CARMA_VERSION_PATCH 0 + #define CARMA_VERSION_NAME "0.6.0 HO" #endif namespace carma {