From c7685f03b727f11feef2f04a5251a76f5ba1e36a Mon Sep 17 00:00:00 2001 From: "James P. Howard, II" Date: Sat, 25 Sep 2021 21:12:35 -0400 Subject: [PATCH 1/2] Patches to changelog --- docs/changelog.rst | 16 ++++++++++++---- docs/conf.py | 1 + 2 files changed, 13 insertions(+), 4 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index f08e49e..6aa5c99 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -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. diff --git a/docs/conf.py b/docs/conf.py index 48fc175..60f16aa 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -48,6 +48,7 @@ def configureDoxyfile(input_dir, output_dir): # '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'] From 7567ee7f36b0b95072f1c4d6941ea065f77bc342 Mon Sep 17 00:00:00 2001 From: "James P. Howard, II" Date: Sat, 25 Sep 2021 21:13:01 -0400 Subject: [PATCH 2/2] Bump version to 0.4.2 --- CMakeLists.txt | 2 +- conanfile.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a9b5089..dd42270 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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}) ################################################################################ diff --git a/conanfile.py b/conanfile.py index 01423cf..9267e06 100644 --- a/conanfile.py +++ b/conanfile.py @@ -3,7 +3,7 @@ class KamiConan(ConanFile): name = "kami" - version = "0.4.1" + version = "0.4.2" license = "MIT" author = "James P. Howard, II " url = "http://github.com/jhuapl/kami"