From c5a296630dc4ad789737d8bd85dcf52ba079d139 Mon Sep 17 00:00:00 2001 From: Rick Staa Date: Tue, 3 Sep 2024 22:13:20 +0200 Subject: [PATCH] chore(main): release 6.0.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 7 +++++++ package.json | 2 +- stable_learning_control/version.py | 2 +- 4 files changed, 10 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 112e32b3d..4ff262096 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "6.0.0" + ".": "6.0.1" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 2005e449a..8df53ef35 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +## [6.0.1](https://github.com/rickstaa/stable-learning-control/compare/v6.0.0...v6.0.1) (2024-09-03) + + +### Bug Fixes + +* fix broken pyproject.toml ([27b6fdf](https://github.com/rickstaa/stable-learning-control/commit/27b6fdfed6407a46192d2304027b307750c18ba6)) + ## [6.0.0](https://github.com/rickstaa/stable-learning-control/compare/v5.1.1...v6.0.0) (2024-03-15) diff --git a/package.json b/package.json index 8e0db5b9b..3aa4a0406 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "stable-learning-control", - "version": "6.0.0", + "version": "6.0.1", "description": "A framework for training theoretically stable (and robust) Reinforcement Learning control algorithms.", "keywords": [ "reinforcement-learning", diff --git a/stable_learning_control/version.py b/stable_learning_control/version.py index 03a171d4a..c1c34d713 100644 --- a/stable_learning_control/version.py +++ b/stable_learning_control/version.py @@ -1,3 +1,3 @@ # Stores the package version number so that it can be accessed from other modules. -__version__ = "6.0.0" +__version__ = "6.0.1" __version_tuple__ = __version__.split(".")