Skip to content

Commit

Permalink
Merge pull request #112 from artichoke/lopopolo/bstr-1.0
Browse files Browse the repository at this point in the history
Update bstr to 1.0, prepare for 0.0.4 release
  • Loading branch information
lopopolo authored Oct 1, 2022
2 parents 7015ade + a08374c commit b7cf1da
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
5 changes: 2 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "roe"
version = "0.0.3" # remember to set `html_root_url` in `src/lib.rs`.
version = "0.0.4" # remember to set `html_root_url` in `src/lib.rs`.
authors = ["Ryan Lopopolo <[email protected]>"]
license = "MIT"
edition = "2018"
Expand All @@ -23,8 +23,7 @@ std = ["alloc"]
alloc = []

[dependencies]
# `no_std` mode was fixed in https://github.com/BurntSushi/bstr/commit/83e8f27e
bstr = { version = "0.2.4", default-features = false }
bstr = { version = "1.0.1", default-features = false }

[dev-dependencies]

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Add this to your `Cargo.toml`:

```toml
[dependencies]
roe = "0.0.3"
roe = "0.0.4"
```

Then convert case like:
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@
//! [conventionally UTF-8 binary strings]: https://docs.rs/bstr/0.2.*/bstr/#when-should-i-use-byte-strings
#![no_std]
#![doc(html_root_url = "https://docs.rs/roe/0.0.3")]
#![doc(html_root_url = "https://docs.rs/roe/0.0.4")]

#[cfg(any(feature = "alloc", test))]
extern crate alloc;
Expand Down

0 comments on commit b7cf1da

Please sign in to comment.