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, )