diff --git a/CHANGELOG.md b/CHANGELOG.md index 15c56ab..8976356 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ This project aims to comply with [Semantic Versioning](http://semver.org/), so please check *Changed* and *Removed* notes before upgrading. ## [Unreleased] + +## [0.3.7] - 2017-02-04 ### Fixed - Correct prioritization of node's children using combination of kind and priority, allowing partial shared keys to coexist and resolve lookup. @@ -74,7 +76,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.6...HEAD +[Unreleased]: https://github.com/luislavena/radix/compare/v0.3.7...HEAD +[0.3.7]: https://github.com/luislavena/radix/compare/v0.3.6...v0.3.7 [0.3.6]: https://github.com/luislavena/radix/compare/v0.3.5...v0.3.6 [0.3.5]: https://github.com/luislavena/radix/compare/v0.3.4...v0.3.5 [0.3.4]: https://github.com/luislavena/radix/compare/v0.3.3...v0.3.4 diff --git a/shard.yml b/shard.yml index a38b089..1f2c2cc 100644 --- a/shard.yml +++ b/shard.yml @@ -1,5 +1,5 @@ name: radix -version: 0.3.5 +version: 0.3.7 authors: - Luis Lavena diff --git a/src/radix/version.cr b/src/radix/version.cr index 3c87495..4503bc4 100644 --- a/src/radix/version.cr +++ b/src/radix/version.cr @@ -1,3 +1,3 @@ module Radix - VERSION = "0.3.5" + VERSION = "0.3.7" end