From a185775bd79af8cd65f012d605abc60966976b75 Mon Sep 17 00:00:00 2001 From: Bryon Tjanaka <38124174+btjanaka@users.noreply.github.com> Date: Thu, 14 Mar 2024 02:39:51 -0700 Subject: [PATCH] Prep version 0.7.1 release (#463) ## Description Preparation for release of v0.7.1. ## Status - [x] I have read the guidelines in [CONTRIBUTING.md](https://github.com/icaros-usc/pyribs/blob/master/CONTRIBUTING.md) - [x] I have formatted my code using `yapf` - [x] I have tested my code by running `pytest` - [x] I have linted my code with `pylint` - [x] I have added a one-line description of my change to the changelog in `HISTORY.md` - [x] This PR is ready to go --- HISTORY.md | 6 +++++- ribs/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 4 files changed, 8 insertions(+), 4 deletions(-) diff --git a/HISTORY.md b/HISTORY.md index b9e493dad..676172a5c 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,6 +1,10 @@ # History -## 0.7.1 (Forthcoming) +## 0.7.1 + +This release introduces the +[QDHF tutorial](https://docs.pyribs.org/en/stable/tutorials/qdhf.html)! It also +makes a couple of minor usability improvements, such as better error checking. ### Changelog diff --git a/ribs/__init__.py b/ribs/__init__.py index d122ac483..9986ea8db 100644 --- a/ribs/__init__.py +++ b/ribs/__init__.py @@ -2,7 +2,7 @@ __author__ = "ICAROS Lab pyribs Team" __email__ = "team@pyribs.org" -__version__ = "0.7.0" +__version__ = "0.7.1" from ribs import archives, emitters, schedulers diff --git a/setup.cfg b/setup.cfg index 5dd7bc038..d439cbae2 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.7.0 +current_version = 0.7.1 commit = True tag = False diff --git a/setup.py b/setup.py index b4606b1db..c1d949be4 100644 --- a/setup.py +++ b/setup.py @@ -112,6 +112,6 @@ python_requires=">=3.8.0", test_suite="tests", url="https://github.com/icaros-usc/pyribs", - version="0.7.0", + version="0.7.1", zip_safe=False, )