Skip to content

Commit

Permalink
1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
BurntSushi committed Sep 7, 2022
1 parent 6ec5f56 commit 86ff47f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bstr"
version = "1.0.0-pre.3" #:version
version = "1.0.0" #:version
authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = "A string type that is not required to be valid UTF-8."
documentation = "https://docs.rs/bstr"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ https://docs.rs/bstr
### When should I use byte strings?

See this part of the documentation for more details:
<https://docs.rs/bstr/1.0.0-pre.1/bstr/#when-should-i-use-byte-strings>.
<https://docs.rs/bstr/1.*/bstr/#when-should-i-use-byte-strings>.

The short story is that byte strings are useful when it is inconvenient or
incorrect to require valid UTF-8.
Expand All @@ -29,7 +29,7 @@ Add this to your `Cargo.toml`:

```toml
[dependencies]
bstr = "1.0.0-pre.1"
bstr = "1.0.0"
```


Expand Down
2 changes: 1 addition & 1 deletion bench/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ path = "src/bench.rs"

[dependencies]
criterion = "0.3.4"
bstr = { version = "1.0.0-pre.1", path = ".." }
bstr = { version = "1.0.0", path = ".." }
# For comparisons.
unicode-segmentation = "1.2.1"

0 comments on commit 86ff47f

Please sign in to comment.