Skip to content

Commit d68389a

Browse files
committed
REL: Release CARMA V0.6.0
1 parent 0124d44 commit d68389a

File tree

4 files changed

+20
-6
lines changed

4 files changed

+20
-6
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
## [0.6.0] - 2021-08-23
4+
5+
### Fixed
6+
7+
- Bug wrt const return type path in type-caster (#83)
8+
- Bug where TC input was copied (#83)
9+
- Bug wrt handling of input arrays smaller than pre-allocation limit (#85)
10+
- Remove unused variables (#84)
11+
12+
### Enhancements
13+
14+
- CARMA is now compatible with ``FIND_PACKAGE(carma CONFIG)`` (#81, #82)
15+
- introduces ``to_numpy_view`` a read-only view on ArmaT as non-writeable array
16+
317
## [0.5.2] - 2021-07-19
418

519
### Fixed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
CMAKE_MINIMUM_REQUIRED(VERSION 3.16)
22

33
SET(CARMA_VERSION_MAJOR 0)
4-
SET(CARMA_VERSION_MINOR 5)
5-
SET(CARMA_VERSION_PATCH 2)
4+
SET(CARMA_VERSION_MINOR 6)
5+
SET(CARMA_VERSION_PATCH 0)
66
SET(CARMA_VERSION_INFO "${CARMA_VERSION_MAJOR}.${CARMA_VERSION_MINOR}.${CARMA_VERSION_PATCH}")
77

88
PROJECT(

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
author = 'R. Urlus'
2323

2424
# The full version, including alpha/beta/rc tags
25-
release = '0.5.2'
25+
release = '0.6.0'
2626

2727

2828
# -- General configuration ---------------------------------------------------

include/carma

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@
3333

3434
#ifndef CARMA_VERSION_MAJOR
3535
#define CARMA_VERSION_MAJOR 0
36-
#define CARMA_VERSION_MINOR 5
37-
#define CARMA_VERSION_PATCH 2
38-
#define CARMA_VERSION_NAME "0.5.2 HO"
36+
#define CARMA_VERSION_MINOR 6
37+
#define CARMA_VERSION_PATCH 0
38+
#define CARMA_VERSION_NAME "0.6.0 HO"
3939
#endif
4040

4141
namespace carma {

0 commit comments

Comments
 (0)