Skip to content

Commit

Permalink
chore: Bump to version 0.4.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
shanecelis committed May 12, 2024
1 parent b2f8c49 commit 89c8a67
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trie-rs"
version = "0.4.1"
version = "0.4.2"
authors = ["Sho Nakatani <lay.sakura@gmail.com>", "Shane Celis <shane.celis@gmail.com>"]
description = "Memory efficient trie (prefix tree) and map library based on LOUDS"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ To use trie-rs, add the following to your `Cargo.toml` file:

```toml
[dependencies]
trie-rs = "0.4.1"
trie-rs = "0.4.2"
```

### Usage Overview
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#![forbid(missing_docs)]
#![doc(html_root_url = "https://docs.rs/trie-rs/0.4.1")]
#![doc(html_root_url = "https://docs.rs/trie-rs/0.4.2")]
#![doc = include_str!("../README.md")]

pub mod inc_search;
Expand Down

0 comments on commit 89c8a67

Please sign in to comment.