Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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

Expand Down
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -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)

Expand Down
Loading