Skip to content

Commit

Permalink
REL: Release CARMA V0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
RUrlus committed Aug 23, 2021
1 parent 0124d44 commit d68389a
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 6 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -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(
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 ---------------------------------------------------
Expand Down
6 changes: 3 additions & 3 deletions include/carma
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit d68389a

Please sign in to comment.