From 8552b23533ea1f37b47d189316fd65380fdde416 Mon Sep 17 00:00:00 2001 From: Michael Sproul Date: Sun, 7 Oct 2018 11:54:18 +1100 Subject: [PATCH] Release 0.1.4 --- CHANGELOG.md | 15 +++++++++++---- Cargo.toml | 2 +- 2 files changed, 12 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0ed6635..423455d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,17 @@ Changelog ==== +0.1.4: + +* Fix a panic that occurred when removing non-existent keys (#40) +* Reformat the code using the latest `rustfmt` + 0.1.3: - * Add `prefix()` method for fetching the `NibbleVec` of a trie or subtrie - * Update `nibble_vec` to v0.0.4 - * Make better use of lifetime elision (type signatures will look different, but are the same) + +* Add `prefix()` method for fetching the `NibbleVec` of a trie or subtrie +* Update `nibble_vec` to v0.0.4 +* Make better use of lifetime elision (type signatures will look different, but are the same) 0.1.2: - * Display README on crates.io (no code changes) + +* Display README on crates.io (no code changes) diff --git a/Cargo.toml b/Cargo.toml index baed894..d045234 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "radix_trie" -version = "0.1.3" +version = "0.1.4" description = "Generic radix trie data-structure." license = "MIT"