Skip to content

Commit

Permalink
REL: Release commit v0.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
RUrlus committed Oct 28, 2021
1 parent e50c37c commit 1acd6bf
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 3 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# Changelog

## [0.6.2] - 2021-10-28

### Fixed

* Bug where ill-conditioned arrays that don't own the data were copy-swapped -- #93

### Changes

* Generate config.h in build directory rather than in source -- #88
* Add MRE test suite for easier debugging
* Add support for Pybind11 2.8.1 and Armadillo 10.7.x

## [0.6.1] - 2021-09-04

### Changes

* include Pybind11 header in cnalloc to prevent linking issue on Windows in debug mode #87

## [0.6.0] - 2021-08-23

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ CMAKE_MINIMUM_REQUIRED(VERSION 3.16)

SET(CARMA_VERSION_MAJOR 0)
SET(CARMA_VERSION_MINOR 6)
SET(CARMA_VERSION_PATCH 0)
SET(CARMA_VERSION_PATCH 2)
SET(CARMA_VERSION_INFO "${CARMA_VERSION_MAJOR}.${CARMA_VERSION_MINOR}.${CARMA_VERSION_PATCH}")

PROJECT(
Expand Down
4 changes: 2 additions & 2 deletions include/carma
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@
#ifndef CARMA_VERSION_MAJOR
#define CARMA_VERSION_MAJOR 0
#define CARMA_VERSION_MINOR 6
#define CARMA_VERSION_PATCH 0
#define CARMA_VERSION_NAME "0.6.0 HO"
#define CARMA_VERSION_PATCH 2
#define CARMA_VERSION_NAME "0.6.2 HO"
#endif

namespace carma {
Expand Down

0 comments on commit 1acd6bf

Please sign in to comment.