diff --git a/CHANGELOG.md b/CHANGELOG.md index 336159e..d847d10 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,8 @@ use patch releases for compatibility fixes instead. ## Unreleased +## [v1.26.9](https://github.com/allenai/beaker-py/releases/tag/v1.26.9) - 2024-05-02 + ### Fixed - Update `synchronized_start_timeout` to send nanoseconds to the Beaker server instead of a string. diff --git a/beaker/version.py b/beaker/version.py index 23c044b..f7adc10 100644 --- a/beaker/version.py +++ b/beaker/version.py @@ -1,6 +1,6 @@ _MAJOR = "1" _MINOR = "26" -_PATCH = "8" +_PATCH = "9" _SUFFIX = "" VERSION_SHORT = "{0}.{1}".format(_MAJOR, _MINOR)