diff --git a/CHANGELOG.md b/CHANGELOG.md index b6b099b..8d3c692 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added +- + +### Changed + +- + +### Removed + +- + +### Fixed + +- + +## [0.0.5] + +### Added + - Adds Cpack to CMake to package .deb file - Adds citation file. - Adds GitHub actions, templates, etc. @@ -19,6 +37,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Improves information on how to build the application. - Integrates CLI11 as a argument parser. +- Updated docker image to allow parsing any flags during runtime. ### Removed diff --git a/CITATION.cff b/CITATION.cff index 51ba1eb..9968dba 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -8,6 +8,6 @@ authors: given-names: "Lena" orcid: "https://orcid.org/0000-0003-4910-9368" title: "mcmlgpu" -version: 0.0.4 +version: 0.0.5 url: "https://github.com/IMSY-DKFZ/mcmlgpu" doi: 10.5281/zenodo.13304909 diff --git a/CMakeLists.txt b/CMakeLists.txt index 7520548..4bd89fe 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8 FATAL_ERROR) -project(MCML LANGUAGES CXX CUDA VERSION 0.0.4) +project(MCML LANGUAGES CXX CUDA VERSION 0.0.5) find_package(CUDA REQUIRED)