From 52152f8aac4a9e2af9c151990a13b47130651039 Mon Sep 17 00:00:00 2001 From: epwalsh Date: Thu, 14 Jul 2022 13:10:36 -0700 Subject: [PATCH] Bump version to v1.6.4 for release --- CHANGELOG.md | 6 +++++- beaker/version.py | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ec1dca8..5693cf2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,10 +3,14 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), -and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) with one exception: minor yet potentially breaking changes to the data model that are made to maintain +compatibility with the Beaker server and not necessarily given new major releases. We often +use patch releases for compatibility fixes instead. ## Unreleased +## [v1.6.4](https://github.com/allenai/beaker-py/releases/tag/v1.6.4) - 2022-07-14 + ### Fixed - Removed outdated field `owner` from `Experiment`, `Task`, and `Dataset`. diff --git a/beaker/version.py b/beaker/version.py index b8ae5d5..832175d 100644 --- a/beaker/version.py +++ b/beaker/version.py @@ -1,6 +1,6 @@ _MAJOR = "1" _MINOR = "6" -_PATCH = "3" +_PATCH = "4" _SUFFIX = "" VERSION_SHORT = "{0}.{1}".format(_MAJOR, _MINOR)