From 3243bc110605a5d1f8152ecbb6bfd06d44de9e63 Mon Sep 17 00:00:00 2001 From: Bryon Tjanaka <38124174+btjanaka@users.noreply.github.com> Date: Mon, 25 Sep 2023 14:51:54 -0700 Subject: [PATCH] Release v0.6.3 (#387) ## Description Part of the release process in CONTRIBUTING.md. ## TODO - [x] Bump version - [x] Update history ## Questions ## 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 | 2 ++ ribs/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/HISTORY.md b/HISTORY.md index a0e739740..e20a90fdf 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -14,6 +14,8 @@ ## 0.6.3 +Small patch release due to deprecation issues. + ### Changelog #### Improvements diff --git a/ribs/__init__.py b/ribs/__init__.py index 4b6368f99..37aebfe25 100644 --- a/ribs/__init__.py +++ b/ribs/__init__.py @@ -2,7 +2,7 @@ __author__ = "ICAROS Lab pyribs Team" __email__ = "team@pyribs.org" -__version__ = "0.6.2" +__version__ = "0.6.3" from ribs import archives, emitters, schedulers diff --git a/setup.cfg b/setup.cfg index ee40025f0..ab3c8b90d 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.6.2 +current_version = 0.6.3 commit = True tag = False diff --git a/setup.py b/setup.py index ca677540e..4d69fa83a 100644 --- a/setup.py +++ b/setup.py @@ -98,6 +98,6 @@ python_requires=">=3.8.0", test_suite="tests", url="https://github.com/icaros-usc/pyribs", - version="0.6.2", + version="0.6.3", zip_safe=False, )