Skip to content

Commit

Permalink
REL: Release v0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
RUrlus committed Mar 27, 2024
1 parent da905f7 commit 6195ae7
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 14 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.7.0] - 2024-03-27

### Changes

* Update default Armadillo version to 12.8.x
* Update default Pybind11 version 2.11.1

## [0.6.6] - 2022-05-22

### Changes
Expand Down
20 changes: 10 additions & 10 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 6)
set(CARMA_VERSION_PATCH 7)
set(CARMA_VERSION_MINOR 7)
set(CARMA_VERSION_PATCH 0)
set(CARMA_VERSION_INFO
"${CARMA_VERSION_MAJOR}.${CARMA_VERSION_MINOR}.${CARMA_VERSION_PATCH}")

Expand All @@ -14,9 +14,9 @@ include(GNUInstallDirs)

set(CMAKE_MODULE_PATH_SAVED ${CMAKE_MODULE_PATH})
list(INSERT CMAKE_MODULE_PATH 0 "${PROJECT_SOURCE_DIR}/cmake")
# ##############################################################################
# # #############################################################################
# SETTINGS #
# ##############################################################################
# # #############################################################################
option(CARMA_INSTALL_LIB "Install CARMA headers" OFF)
set(CARMA_INCLUDE_INSTALL_DIR "${CMAKE_INSTALL_INCLUDEDIR}/carma")

Expand All @@ -43,9 +43,9 @@ configure_file(
${PROJECT_SOURCE_DIR}/include/carma_bits/config.h.in
${PROJECT_BINARY_DIR}/include/carma_bits/generated_config.h @ONLY)

# ##############################################################################
# # #############################################################################
# TARGET #
# ##############################################################################
# # #############################################################################
add_library(carma INTERFACE)
add_library(carma::carma ALIAS carma)

Expand Down Expand Up @@ -151,9 +151,9 @@ if(CARMA_INSTALL_LIB)
DESTINATION ${CARMA_INCLUDE_INSTALL_DIR}/carma_bits)

else()
# ############################################################################
# # ###########################################################################
# REQUIREMENTS #
# ############################################################################
# # ###########################################################################
find_package(
Python3
COMPONENTS Development NumPy
Expand All @@ -176,9 +176,9 @@ else()
target_precompile_headers(carma INTERFACE
${PROJECT_SOURCE_DIR}/include/carma_bits/cnalloc.h)
endif()
# ##############################################################################
# # #############################################################################
# TEST TARGETS #
# ##############################################################################
# # #############################################################################

if(CARMA_BUILD_TESTS OR CARMA_BUILD_EXAMPLES)
set(CMAKE_CXX_STANDARD 14)
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
author = "R. Urlus"

# The full version, including alpha/beta/rc tags
release = "0.6.7"
release = "0.7.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 @@ -41,9 +41,9 @@ typedef SSIZE_T ssize_t;

#ifndef CARMA_VERSION_MAJOR
#define CARMA_VERSION_MAJOR 0
#define CARMA_VERSION_MINOR 6
#define CARMA_VERSION_PATCH 7
#define CARMA_VERSION_NAME "0.6.7 HO"
#define CARMA_VERSION_MINOR 7
#define CARMA_VERSION_PATCH 0
#define CARMA_VERSION_NAME "0.7.0 HO"
#endif

namespace carma {
Expand Down

0 comments on commit 6195ae7

Please sign in to comment.