From 2a750c4499768bad159ee94efa197ba13bf29852 Mon Sep 17 00:00:00 2001 From: Manjari Akella Date: Tue, 2 May 2023 14:32:40 -0700 Subject: [PATCH 1/3] Preparing release v1.11.0 --- CHANGELOG.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 729a316..41244ff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,11 +4,13 @@ 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). -## Unreleased +## [1.11.0] - 2023-05-02 ### Added - Add `String` method to `atomic.Pointer[T]` type allowing users to safely print underlying values of pointers. +[1.11.0]: https://github.com/uber-go/atomic/compare/v1.10.0...v1.11.0 + ## [1.10.0] - 2022-08-11 ### Added - Add `atomic.Float32` type for atomic operations on `float32`. From 76f817c8b7e771cdffc2b9f11a7ebb80333ca92b Mon Sep 17 00:00:00 2001 From: Manjari Akella Date: Wed, 3 May 2023 10:25:03 -0700 Subject: [PATCH 2/3] Update CHANGELOG.md --- CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 41244ff..6f87f33 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,9 @@ 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). ## [1.11.0] - 2023-05-02 +### Fixed +- Fix initialization of `Value` wrappers. + ### Added - Add `String` method to `atomic.Pointer[T]` type allowing users to safely print underlying values of pointers. From d37c271118174df2d7b19067231eaf94eeacc0b1 Mon Sep 17 00:00:00 2001 From: Manjari Akella Date: Wed, 3 May 2023 13:13:15 -0700 Subject: [PATCH 3/3] Update CHANGELOG.md Co-authored-by: Sung Yoon Whang --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f87f33..898944e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [1.11.0] - 2023-05-02 ### Fixed -- Fix initialization of `Value` wrappers. +- Fix `Swap` and `CompareAndSwap` for `Value` wrappers without initialization. ### Added - Add `String` method to `atomic.Pointer[T]` type allowing users to safely print