Skip to content

Commit 1acd6bf

Browse files
committed
REL: Release commit v0.6.2
1 parent e50c37c commit 1acd6bf

File tree

3 files changed

+21
-3
lines changed

3 files changed

+21
-3
lines changed

CHANGELOG.md

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

3+
## [0.6.2] - 2021-10-28
4+
5+
### Fixed
6+
7+
* Bug where ill-conditioned arrays that don't own the data were copy-swapped -- #93
8+
9+
### Changes
10+
11+
* Generate config.h in build directory rather than in source -- #88
12+
* Add MRE test suite for easier debugging
13+
* Add support for Pybind11 2.8.1 and Armadillo 10.7.x
14+
15+
## [0.6.1] - 2021-09-04
16+
17+
### Changes
18+
19+
* include Pybind11 header in cnalloc to prevent linking issue on Windows in debug mode #87
20+
321
## [0.6.0] - 2021-08-23
422

523
### Fixed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ CMAKE_MINIMUM_REQUIRED(VERSION 3.16)
22

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

88
PROJECT(

include/carma

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@
3434
#ifndef CARMA_VERSION_MAJOR
3535
#define CARMA_VERSION_MAJOR 0
3636
#define CARMA_VERSION_MINOR 6
37-
#define CARMA_VERSION_PATCH 0
38-
#define CARMA_VERSION_NAME "0.6.0 HO"
37+
#define CARMA_VERSION_PATCH 2
38+
#define CARMA_VERSION_NAME "0.6.2 HO"
3939
#endif
4040

4141
namespace carma {

0 commit comments

Comments
 (0)