diff --git a/CHANGELOG.md b/CHANGELOG.md index 9574be2..41dbf94 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,11 @@ so please check *Changed* and *Removed* notes before upgrading. ## [Unreleased] -## [0.3.3] - 2016-11-12 +## [0.3.4] - 2016-11-12 +### Fixed +- Ensure catch all parameter can be used as optional globbing (@jwoertink) + +## [0.3.3] - 2016-11-12 [YANKED] ### Fixed - Ensure catch all parameter can be used as optional globbing (@jwoertink) @@ -58,7 +62,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.3...HEAD +[Unreleased]: https://github.com/luislavena/radix/compare/v0.3.4...HEAD +[0.3.4]: https://github.com/luislavena/radix/compare/v0.3.3...v0.3.4 [0.3.3]: https://github.com/luislavena/radix/compare/v0.3.2...v0.3.3 [0.3.2]: https://github.com/luislavena/radix/compare/v0.3.1...v0.3.2 [0.3.1]: https://github.com/luislavena/radix/compare/v0.3.0...v0.3.1 diff --git a/shard.yml b/shard.yml index a4ccd99..5857a21 100644 --- a/shard.yml +++ b/shard.yml @@ -1,5 +1,5 @@ name: radix -version: 0.3.2 +version: 0.3.4 authors: - Luis Lavena diff --git a/src/radix/version.cr b/src/radix/version.cr index 3743a97..4483ac1 100644 --- a/src/radix/version.cr +++ b/src/radix/version.cr @@ -1,3 +1,3 @@ module Radix - VERSION = "0.3.2" + VERSION = "0.3.4" end