Skip to content

Commit 1f53396

Browse files
committed
Release v0.1.1
1 parent b80f370 commit 1f53396

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
22
name = "stringprep"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
authors = ["Steven Fackler <[email protected]>"]
55
license = "MIT/Apache-2.0"
66
description = "An implementation of the stringprep algorithm"
77
repository = "https://github.com/sfackler/rust-stringprep"
8-
documentation = "https://docs.rs/stringprep/0.1.0/stringprep"
8+
documentation = "https://docs.rs/stringprep/0.1.1/stringprep"
99
readme = "README.md"
1010

1111
[dependencies]

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//! An implementation of the "stringprep" algorithm defined in [RFC 3454][].
22
//!
33
//! [RFC 3454]: https://tools.ietf.org/html/rfc3454
4-
#![doc(html_root_url="https://docs.rs/stringprep/0.1.0")]
4+
#![doc(html_root_url="https://docs.rs/stringprep/0.1.1")]
55
#![warn(missing_docs)]
66
extern crate unicode_bidi;
77
extern crate unicode_normalization;

0 commit comments

Comments
 (0)