diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 8f0feac..cfdf2ae 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -14,6 +14,12 @@ Change Log Unreleased ~~~~~~~~~~ +[17.0.1] - 2023-11-20 +~~~~~~~~~~~~~~~~~~~~~ + +* fix: remove deprecated is_buildkit_enabled which now always evaluates to 'true' (#47) + + [17.0.0] - 2023-11-20 ~~~~~~~~~~~~~~~~~~~~~ diff --git a/setup.cfg b/setup.cfg index 301c460..af88507 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 17.0.0 +current_version = 17.0.1 commit = True tag = True diff --git a/tutorcodejail/__about__.py b/tutorcodejail/__about__.py index cacbdbc..4a04a60 100644 --- a/tutorcodejail/__about__.py +++ b/tutorcodejail/__about__.py @@ -1,2 +1,2 @@ """Helps you keep your cool when creating dozens of open edX and eduNEXT environments.""" -__version__ = "17.0.0" +__version__ = "17.0.1"