From 04d657d80257496cdadb6fe2b5cb169d1945c511 Mon Sep 17 00:00:00 2001 From: Viktor Erlingsson Date: Fri, 22 Sep 2023 11:22:30 +0200 Subject: [PATCH] Update CHANGELOG and bump version --- CHANGELOG.md | 6 ++++++ shard.yml | 2 +- src/amq/protocol/version.cr | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e311fe8..d295730 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.1.10] - 2023-09-22 + +### Fixed + +- Fixed an issue where reassigning values in a Table with a nested Table would overwrite existing data. + ## [1.1.9] - 2023-08-22 ### Fixed diff --git a/shard.yml b/shard.yml index 0ea97a7..759ee83 100644 --- a/shard.yml +++ b/shard.yml @@ -1,5 +1,5 @@ name: amq-protocol -version: 1.1.9 +version: 1.1.10 authors: - Carl Hörberg diff --git a/src/amq/protocol/version.cr b/src/amq/protocol/version.cr index 4c1ec10..8066889 100644 --- a/src/amq/protocol/version.cr +++ b/src/amq/protocol/version.cr @@ -1,5 +1,5 @@ module AMQ module Protocol - VERSION = "1.1.9" + VERSION = "1.1.10" end end