Skip to content

Commit 89c8a67

Browse files
committed
chore: Bump to version 0.4.2.
1 parent b2f8c49 commit 89c8a67

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "trie-rs"
3-
version = "0.4.1"
3+
version = "0.4.2"
44
authors = ["Sho Nakatani <lay.sakura@gmail.com>", "Shane Celis <shane.celis@gmail.com>"]
55
description = "Memory efficient trie (prefix tree) and map library based on LOUDS"
66
readme = "README.md"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ To use trie-rs, add the following to your `Cargo.toml` file:
2323

2424
```toml
2525
[dependencies]
26-
trie-rs = "0.4.1"
26+
trie-rs = "0.4.2"
2727
```
2828

2929
### Usage Overview

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#![forbid(missing_docs)]
2-
#![doc(html_root_url = "https://docs.rs/trie-rs/0.4.1")]
2+
#![doc(html_root_url = "https://docs.rs/trie-rs/0.4.2")]
33
#![doc = include_str!("../README.md")]
44

55
pub mod inc_search;

0 commit comments

Comments
 (0)