From 62b3da0f87d7ffde7522d6fb0a86a1c97120a3ab Mon Sep 17 00:00:00 2001 From: Federico Belotti Date: Wed, 29 May 2024 11:39:02 +0200 Subject: [PATCH] feat: bump version to v0.5.7 (#294) --- CITATION.cff | 2 +- notebooks/dreamer_v3_imagination.ipynb | 2 +- pyproject.toml | 2 +- sheeprl/__init__.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CITATION.cff b/CITATION.cff index 1c182b2e..60bb5566 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -13,7 +13,7 @@ authors: given-names: "Refik" - family-names: "Milesi" given-names: "Michele" -version: 0.5.6 +version: 0.5.7 license: "Apache-2.0" DOI: 10.5281/zenodo.11030899 url: "https://eclecticsheep.ai" diff --git a/notebooks/dreamer_v3_imagination.ipynb b/notebooks/dreamer_v3_imagination.ipynb index 1c19e33d..5545c47a 100644 --- a/notebooks/dreamer_v3_imagination.ipynb +++ b/notebooks/dreamer_v3_imagination.ipynb @@ -6,7 +6,7 @@ "source": [ "# Dreamer V3 imagination + reconstruct observations\n", "\n", - "This notebook is updated to SheepRL version [v0.5.6](https://github.com/Eclectic-Sheep/sheeprl/tree/release/v0.5.6). It provides a way to obtain the imagined and reconstructed frames of the Dreamer V3 agent. By default, a GIF is created, but one can create a video from them.\n", + "This notebook is updated to SheepRL version [v0.5.7](https://github.com/Eclectic-Sheep/sheeprl/tree/release/v0.5.7). It provides a way to obtain the imagined and reconstructed frames of the Dreamer V3 agent. By default, a GIF is created, but one can create a video from them.\n", "\n", "This notebook is organized as follows:\n", "1. Agent and environment creation from checkpoint\n", diff --git a/pyproject.toml b/pyproject.toml index 02b99128..2d1c9433 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -200,7 +200,7 @@ warn_return_any = false [tool.bumpver] -current_version = "0.5.6" +current_version = "0.5.7" version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]" commit_message = "bump version {old_version} -> {new_version}" tag_message = "v{new_version}" diff --git a/sheeprl/__init__.py b/sheeprl/__init__.py index 14614e5c..a7a0bff7 100644 --- a/sheeprl/__init__.py +++ b/sheeprl/__init__.py @@ -52,7 +52,7 @@ np.int = np.int64 np.bool = bool -__version__ = "0.5.6" +__version__ = "0.5.7" # Replace `moviepy.decorators.use_clip_fps_by_default` method to work with python 3.8, 3.9, and 3.10