diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 7269a19ae..5a2f706c6 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "5.0.2" + ".": "5.0.3" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 0a0327cbc..446b4ce78 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. +## [5.0.3](https://github.com/rickstaa/stable-learning-control/compare/v5.0.2...v5.0.3) (2023-08-29) + + +### Documentation + +* improve docs ([#344](https://github.com/rickstaa/stable-learning-control/issues/344)) ([908fd78](https://github.com/rickstaa/stable-learning-control/commit/908fd78886676d55a7e2f760b62bb280e915f124)) + ## [5.0.2](https://github.com/rickstaa/stable-learning-control/compare/v5.0.1...v5.0.2) (2023-08-28) diff --git a/package.json b/package.json index 1bc57f56c..a4dff8223 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "stable-learning-control", - "version": "5.0.2", + "version": "5.0.3", "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 96a9a09ff..5c3f9009d 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__ = "5.0.2" +__version__ = "5.0.3" __version_tuple__ = __version__.split(".")