From d2e6c193a267225b6628fb8f6941d6ba33f074eb Mon Sep 17 00:00:00 2001 From: Bryon Tjanaka <38124174+btjanaka@users.noreply.github.com> Date: Fri, 5 Mar 2021 21:48:46 -0800 Subject: [PATCH] v0.3.1 release (#96) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Bump version: 0.3.0 → 0.3.1 * Add release notes --- HISTORY.md | 13 +++++++++++++ ribs/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 4 files changed, 16 insertions(+), 3 deletions(-) diff --git a/HISTORY.md b/HISTORY.md index 435fba48a..1a32edf1b 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,18 @@ # History +## 0.3.1 (2021-03-05) + +This release features various bug fixes and improvements. In particular, we have +added tests for SlidingBoundariesArchive and believe it is ready for more +rigorous use. + +### Changelog + +- Move SlidingBoundariesArchive out of experimental by adding tests and fixing bugs (#93) +- Added nicer figures to the Sphere example with `grid_archive_heatmap` (#86) +- Added testing for Windows and MacOS (#83) +- Fixed package metadata e.g. description + ## 0.3.0 (2021-02-05) pyribs is now in beta. Since our alpha release (0.2.0), we have polished the diff --git a/ribs/__init__.py b/ribs/__init__.py index fd28fc0b3..529767575 100644 --- a/ribs/__init__.py +++ b/ribs/__init__.py @@ -2,7 +2,7 @@ __author__ = "ICAROS Lab pyribs Team" __email__ = "team@pyribs.org" -__version__ = "0.3.0" +__version__ = "0.3.1" from ribs import archives, emitters, factory, optimizers diff --git a/setup.cfg b/setup.cfg index f060fc4e2..dc2103a5a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.3.0 +current_version = 0.3.1 commit = True tag = False diff --git a/setup.py b/setup.py index cd7393f54..e7f7eb286 100644 --- a/setup.py +++ b/setup.py @@ -96,6 +96,6 @@ python_requires=">=3.6.0", test_suite="tests", url="https://github.com/icaros-usc/pyribs", - version="0.3.0", + version="0.3.1", zip_safe=False, )