From f4eba93992b10b2097e0e93900938caafde8368c Mon Sep 17 00:00:00 2001 From: rickstaa Date: Tue, 30 May 2023 14:53:56 +0200 Subject: [PATCH] chore(release): 0.5.0 --- CHANGELOG.md | 11 +++++++++++ package.json | 2 +- setup.cfg | 2 +- simzoo/version.py | 2 +- 4 files changed, 14 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7c1582a9..166f5fdc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,17 @@ 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. +## [0.5.0](https://github.com/rickstaa/simzoo/compare/v0.4.93...v0.5.0) (2023-05-30) + + +### ⚠ BREAKING CHANGES + +* step now returns 5 values instead of 4. + +### Features + +* depricate step done return value ([#98](https://github.com/rickstaa/simzoo/issues/98)) ([4f435d6](https://github.com/rickstaa/simzoo/commit/4f435d6f9c7aaa12fc91a1722cc5ac4cc22d44a3)) + ### [0.4.93](https://github.com/rickstaa/simzoo/compare/v0.4.92...v0.4.93) (2023-05-30) diff --git a/package.json b/package.json index defb93c9..e0f2ad63 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "simzoo", - "version": "0.4.93", + "version": "0.5.0", "description": "Package that contains the gym environments of the bayesian-learning-control package.", "keywords": [ "reinforcement-learning", diff --git a/setup.cfg b/setup.cfg index acd3462c..7a5227ad 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = simzoo -version = 0.4.93 +version = 0.5.0 description = A python package containing the bayesian_learning_control openai gym environments. long_description = file: README.md, CHANGELOG.md, LICENSE long_description_content_type=text/markdown diff --git a/simzoo/version.py b/simzoo/version.py index 7248b4e6..bf51a669 100644 --- a/simzoo/version.py +++ b/simzoo/version.py @@ -1,6 +1,6 @@ # coding: utf-8 """The simzoo version.""" -version = "0.4.93" +version = "0.5.0" __version__ = version # format: # ('mlc_major', 'mlc_minor', 'mlc_patch')