From 809a3d3d38cf509a3e02dabc6507a6361fbf9568 Mon Sep 17 00:00:00 2001 From: Antonin Raffin Date: Fri, 14 Feb 2020 14:39:24 +0100 Subject: [PATCH] Release 0.2.0 --- docs/misc/changelog.rst | 27 ++++++++++++++++++++++++++- setup.py | 2 +- torchy_baselines/__init__.py | 2 +- 3 files changed, 28 insertions(+), 3 deletions(-) diff --git a/docs/misc/changelog.rst b/docs/misc/changelog.rst index ea784b6..56d0d1b 100644 --- a/docs/misc/changelog.rst +++ b/docs/misc/changelog.rst @@ -3,9 +3,34 @@ Changelog ========== -Pre-Release 0.2.0a2 (WIP) + +Pre-Release 0.3.0a0 (WIP) ------------------------------ +Breaking Changes: +^^^^^^^^^^^^^^^^^ + +New Features: +^^^^^^^^^^^^^ + +Bug Fixes: +^^^^^^^^^^ + +Deprecations: +^^^^^^^^^^^^^ + +Others: +^^^^^^^ + +Documentation: +^^^^^^^^^^^^^^ + + +Pre-Release 0.2.0 (2020-02-14) +------------------------------ + +**Python 3.6+ required, type checking, callbacks, doc build** + Breaking Changes: ^^^^^^^^^^^^^^^^^ - Python 2 support was dropped, Torchy Baselines now requires Python 3.6 or above diff --git a/setup.py b/setup.py index 92389ea..0c39da3 100644 --- a/setup.py +++ b/setup.py @@ -47,7 +47,7 @@ setup(name='torchy_baselines', license="MIT", long_description="", long_description_content_type='text/markdown', - version="0.2.0a2", + version="0.2.0", ) # python setup.py sdist diff --git a/torchy_baselines/__init__.py b/torchy_baselines/__init__.py index 5e22a8d..cc2889b 100644 --- a/torchy_baselines/__init__.py +++ b/torchy_baselines/__init__.py @@ -4,4 +4,4 @@ from torchy_baselines.ppo import PPO from torchy_baselines.sac import SAC from torchy_baselines.td3 import TD3 -__version__ = "0.2.0a2" +__version__ = "0.2.0"