Merge branch 'hotfix/0.4.2'

This commit is contained in:
James P. Howard, II
2021-09-25 21:13:31 -04:00
4 changed files with 15 additions and 6 deletions

View File

@@ -29,7 +29,7 @@ cmake_minimum_required(VERSION 3.13) # GENERATOR_IS_MULTI_CONFIG
set(KAMI_VERSION_MAJOR 0)
set(KAMI_VERSION_MINOR 4)
set(KAMI_VERSION_PATCH 1)
set(KAMI_VERSION_PATCH 2)
set(KAMI_VERSION_STRING ${KAMI_VERSION_MAJOR}.${KAMI_VERSION_MINOR}.${KAMI_VERSION_PATCH})
################################################################################

View File

@@ -3,7 +3,7 @@ from conans import ConanFile, CMake
class KamiConan(ConanFile):
name = "kami"
version = "0.4.1"
version = "0.4.2"
license = "MIT"
author = "James P. Howard, II <james.howard@jhu.edu>"
url = "http://github.com/jhuapl/kami"

View File

@@ -1,12 +1,20 @@
Changelog
=========
- :release:`0.4.2 <2021.09.25>`
- :bug:`0` Fixed Changelog to move docs to support
- :bug:`0` Fixed Changelog with current releases added
- :release:`0.4.1 <2021.09.25>`
- :bug:`0` Fixed README file links
- :release:`0.4.0 <2021.09.25>`
- :bug:`0` Cleaned up numerous issues found by CLion's linter
- :feature:`0` Added a new overview to the documents
- :feature:`0` Added basic installation instructions
- :support:`0` Added a new overview to the documents
- :support:`0` Added basic installation instructions
- :bug:`0` Retagged previous versions using pure Semantic Versioning
- :feature:`0` Documentation for `kami::RandomScheduler`
- :feature:`0` Added a changelog!
- :support:`0` Documentation for `kami::RandomScheduler`
- :support:`0` Added a changelog!
- :release:`0.3.0 <2021.09.20>`
- :feature:`0` Initial public release.

View File

@@ -48,6 +48,7 @@ extensions = [
# 'releases' (changelog) settings
releases_github_path = "JHUAPL/kami"
releases_unstable_prehistory = True
# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']