From 9dac23844461750473e54dbf39307fcc08853001 Mon Sep 17 00:00:00 2001 From: Luis Lavena Date: Sun, 31 Jan 2021 00:01:06 -0300 Subject: [PATCH] Prepare for release: v0.4.0 --- CHANGELOG.md | 6 ++++-- shard.yml | 2 +- src/radix/version.cr | 2 +- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6860007..6f12f38 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,12 +6,13 @@ so please check *Changed* and *Removed* notes before upgrading. ## [Unreleased] +## [0.4.0] - 2021-01-31 ### Fixed - Correct lookup issue caused by partial shared key with glob [#23](https://github.com/luislavena/radix/issues/23) - Correct lookup caused by non-root key in suffix [#27](https://github.com/luislavena/radix/issues/27) ### Removed -- Remove `Radix::Result#key` since exposes internal details about structure (breaking change) +- Remove `Radix::Result#key` since exposes internal details about structure (**breaking change**) ## [0.3.9] - 2019-01-02 ### Fixed @@ -92,7 +93,8 @@ so please check *Changed* and *Removed* notes before upgrading. ### Added - Initial release based on code extracted from Beryl. -[Unreleased]: https://github.com/luislavena/radix/compare/v0.3.9...HEAD +[Unreleased]: https://github.com/luislavena/radix/compare/v0.4.0...HEAD +[0.4.0]: https://github.com/luislavena/radix/compare/v0.3.9...v0.4.0 [0.3.9]: https://github.com/luislavena/radix/compare/v0.3.8...v0.3.9 [0.3.8]: https://github.com/luislavena/radix/compare/v0.3.7...v0.3.8 [0.3.7]: https://github.com/luislavena/radix/compare/v0.3.6...v0.3.7 diff --git a/shard.yml b/shard.yml index 70565cd..25fe5ca 100644 --- a/shard.yml +++ b/shard.yml @@ -1,5 +1,5 @@ name: radix -version: 0.3.9 +version: 0.4.0 authors: - Luis Lavena diff --git a/src/radix/version.cr b/src/radix/version.cr index f29f1a7..6491f6c 100644 --- a/src/radix/version.cr +++ b/src/radix/version.cr @@ -1,3 +1,3 @@ module Radix - VERSION = "0.3.9" + VERSION = "0.4.0" end