From 60018c2bceb41d00404d3b0f8c195f85d1bfc6c7 Mon Sep 17 00:00:00 2001 From: "James P. Howard, II" Date: Sun, 22 Jan 2023 20:49:28 -0500 Subject: [PATCH] chore(version): Bump to version 0.7.0 --- CMakeLists.txt | 2 +- conanfile.py | 2 +- docs/changelog.rst | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 218e085..0e6bcf5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -5,7 +5,7 @@ cmake_minimum_required(VERSION 3.13) set(PROJECT_NAME "kami") set(VERSION_MAJOR 0) -set(VERSION_MINOR 6) +set(VERSION_MINOR 7) set(VERSION_PATCH 0) set(VERSION_STRING ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}) diff --git a/conanfile.py b/conanfile.py index 4c7441b..bae149b 100644 --- a/conanfile.py +++ b/conanfile.py @@ -3,7 +3,7 @@ class KamiConan(ConanFile): name = "kami" - version = "0.6.0" + version = "0.7.0" license = "MIT" author = "James P. Howard, II " url = "https://github.com/jhuapl/kami" diff --git a/docs/changelog.rst b/docs/changelog.rst index aef703f..c3509e1 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,6 +1,7 @@ Changelog ========= +- :release:`0.7.0 <2023.01.22>` - :support:`0` Added a minimal example and tutorial - :support:`0` Added documentation for each example - :feature:`0` Readded step() to the Model interface