Skip to content

Commit

Permalink
chore(main): release 4.0.0 (#256)
Browse files Browse the repository at this point in the history
  • Loading branch information
rickstaa authored Jun 22, 2023
1 parent 1133d0a commit 0a5872e
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "3.0.0"
".": "4.0.0"
}
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,19 @@

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.

## [4.0.0](https://github.com/rickstaa/stable-learning-control/compare/v3.0.0...v4.0.0) (2023-06-22)


### ⚠ BREAKING CHANGES

* **package:** The package should now be used as `stable_learning_control` instead of `bayesian_learning_control`.
* This package now depends on Gymnasium instead of Gym. Furthermore, it also requires Gymnasium>=26 (see https://gymnasium.farama.org/content/migration-guide/) for more information.

### Features

* **package:** renames the package to `stable-learning-control` ([#257](https://github.com/rickstaa/stable-learning-control/issues/257)) ([1133d0a](https://github.com/rickstaa/stable-learning-control/commit/1133d0a2c9294a85cda592ed46627a4aba7157bc))
* replace OpenAi gym with Gymnasium ([#255](https://github.com/rickstaa/stable-learning-control/issues/255)) ([9873a03](https://github.com/rickstaa/stable-learning-control/commit/9873a0311511c6e9e08ea0957bb008e8a7e6f109))

## [3.0.0](https://github.com/rickstaa/stable-learning-control/compare/v2.0.0...v3.0.0) (2023-06-21)


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "stable-learning-control",
"version": "3.0.0",
"version": "4.0.0",
"description": "A framework for learning stable reinforcement learning policies.",
"keywords": [
"reinforcement-learning",
Expand Down
2 changes: 1 addition & 1 deletion stable_learning_control/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Stores the package version number so that it can be accessed from other modules.
__version__ = "3.0.0"
__version__ = "4.0.0"
__version_tuple__ = __version__.split(".")

0 comments on commit 0a5872e

Please sign in to comment.