Skip to content

Commit d815cc6

Browse files
authored
Merge pull request #20 from artichoke/release-1.0.0
Bump crate version to 1.0.0
2 parents 741d840 + 5eb462b commit d815cc6

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "intaglio"
3-
version = "0.1.0"
3+
version = "1.0.0"
44
authors = ["Ryan Lopopolo <[email protected]>"]
55
edition = "2018"
66
description = "UTF-8 string and bytestring interner and symbol table"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Add this to your `Cargo.toml`:
3535

3636
```toml
3737
[dependencies]
38-
intaglio = "0.1"
38+
intaglio = "1.0"
3939
```
4040

4141
Then intern UTF-8 strings like:

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
//! interning bytestrings (`Vec<u8>` and `&'static [u8]`). Disabling this
6363
//! drops the `bstr` dependency.
6464
65-
#![doc(html_root_url = "https://docs.rs/intaglio/0.1.0")]
65+
#![doc(html_root_url = "https://docs.rs/intaglio/1.0.0")]
6666

6767
#[cfg(all(doctest, feature = "bytes"))]
6868
doc_comment::doctest!("../README.md");

0 commit comments

Comments
 (0)