diff --git a/CHANGELOG.md b/CHANGELOG.md index 8968fb7cd..bb960d9b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +## [v1.1.0](https://github.com/allenai/tango/releases/tag/v1.1.0) - 2022-12-01 + ### Added - Added `gpu_type` field to `StepResources`. The `BeakerExecutor` can use this to determine which clusters to a submit a step to. diff --git a/tango/version.py b/tango/version.py index 00d93ef5b..4aabd3b6a 100644 --- a/tango/version.py +++ b/tango/version.py @@ -1,6 +1,6 @@ _MAJOR = "1" -_MINOR = "0" -_PATCH = "2" +_MINOR = "1" +_PATCH = "0" # This is mainly for pre-releases which have the suffix "rc[0-9]+". _SUFFIX = ""