From 209cb6434872ab1b66ea0c1d3aa7235cb4140e8a Mon Sep 17 00:00:00 2001 From: Ketsia Date: Fri, 1 Mar 2024 16:31:56 +0100 Subject: [PATCH] Update version and changelog --- CHANGELOG.md | 7 +++++++ internal/version.go | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0ef53f4b2..5383ae6c2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,13 @@ 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). ## [Unreleased] +## [v1.2.9] - 2024-03-01 +### Added +- retract directive for v1.2.8 + +### Changed +- Revert breaking changes from v1.2.8 (#1315) + ## [v1.2.8] - 2024-02-27 - Support two-legged OAuth flow (#1304) - Expose method to get default worker options (#1311) diff --git a/internal/version.go b/internal/version.go index cad28c990..96a3956e2 100644 --- a/internal/version.go +++ b/internal/version.go @@ -43,7 +43,7 @@ package internal // Due to all of this unreliability, this should be used as strictly informational // metadata, e.g. for caller version monitoring, never behavioral (use // FeatureVersion or feature flags instead). -const LibraryVersion = "1.2.8" +const LibraryVersion = "1.2.9" // FeatureVersion is a semver that informs the server of what high-level behaviors // this client supports.