diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 112e32b3..4ff26209 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 2005e449..8df53ef3 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 8e0db5b9..3aa4a040 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 03a171d4..c1c34d71 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(".")