From fc06bb86fa969640afe59e84c0d044b246b946b6 Mon Sep 17 00:00:00 2001 From: Abhinav Gupta Date: Fri, 11 Sep 2020 11:30:41 -0700 Subject: [PATCH 1/3] Prepare release v1.7.0 Release v1.7.0 of atomic. This includes a couple additional features as well as the correctness change introduced in (#74). --- CHANGELOG.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7d9ac40..45e8e31 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,11 @@ 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.7.0] - 2020-09-11 +### Added +- Support JSON serialization and deserialization of primitive atomic types. +- Support Text marshalling and unmarshalling for string atomics. + ### Changed - Disallow incorrect comparison of atomic values in a non-atomic way. @@ -59,7 +63,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Initial release. -[Unreleased]: https://github.com/uber-go/atomic/compare/v1.6.0...HEAD +[Unreleased]: https://github.com/uber-go/atomic/compare/v1.6.0...v1.7.0 [1.6.0]: https://github.com/uber-go/atomic/compare/v1.5.1...v1.6.0 [1.5.1]: https://github.com/uber-go/atomic/compare/v1.5.0...v1.5.1 [1.5.0]: https://github.com/uber-go/atomic/compare/v1.4.0...v1.5.0 From 12b3a644a8916b1351eb2ecde42da56a35d47c8c Mon Sep 17 00:00:00 2001 From: Abhinav Gupta Date: Fri, 11 Sep 2020 12:14:17 -0700 Subject: [PATCH 2/3] Update CHANGELOG.md --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 45e8e31..58b80de 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -63,7 +63,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Initial release. -[Unreleased]: https://github.com/uber-go/atomic/compare/v1.6.0...v1.7.0 +[1.7.0]: https://github.com/uber-go/atomic/compare/v1.6.0...v1.7.0 [1.6.0]: https://github.com/uber-go/atomic/compare/v1.5.1...v1.6.0 [1.5.1]: https://github.com/uber-go/atomic/compare/v1.5.0...v1.5.1 [1.5.0]: https://github.com/uber-go/atomic/compare/v1.4.0...v1.5.0 From 5fcb236eede8ac48b879223ba84a38429b1f865a Mon Sep 17 00:00:00 2001 From: Abhinav Gupta Date: Fri, 11 Sep 2020 13:46:03 -0700 Subject: [PATCH 3/3] release on monday --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 58b80de..24c0274 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ 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). -## [1.7.0] - 2020-09-11 +## [1.7.0] - 2020-09-14 ### Added - Support JSON serialization and deserialization of primitive atomic types. - Support Text marshalling and unmarshalling for string atomics.