mirror of
https://gitea.invidious.io/iv-org/shard-radix.git
synced 2024-08-15 00:43:21 +00:00
Prepare for release: v0.4.0
This commit is contained in:
parent
c6a0701a44
commit
9dac238444
3 changed files with 6 additions and 4 deletions
|
@ -6,12 +6,13 @@ so please check *Changed* and *Removed* notes before upgrading.
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [0.4.0] - 2021-01-31
|
||||||
### Fixed
|
### Fixed
|
||||||
- Correct lookup issue caused by partial shared key with glob [#23](https://github.com/luislavena/radix/issues/23)
|
- 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)
|
- Correct lookup caused by non-root key in suffix [#27](https://github.com/luislavena/radix/issues/27)
|
||||||
|
|
||||||
### Removed
|
### 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
|
## [0.3.9] - 2019-01-02
|
||||||
### Fixed
|
### Fixed
|
||||||
|
@ -92,7 +93,8 @@ so please check *Changed* and *Removed* notes before upgrading.
|
||||||
### Added
|
### Added
|
||||||
- Initial release based on code extracted from Beryl.
|
- 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.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.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
|
[0.3.7]: https://github.com/luislavena/radix/compare/v0.3.6...v0.3.7
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
name: radix
|
name: radix
|
||||||
version: 0.3.9
|
version: 0.4.0
|
||||||
|
|
||||||
authors:
|
authors:
|
||||||
- Luis Lavena <luislavena@gmail.com>
|
- Luis Lavena <luislavena@gmail.com>
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
module Radix
|
module Radix
|
||||||
VERSION = "0.3.9"
|
VERSION = "0.4.0"
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue