diff --git a/CHANGELOG.md b/CHANGELOG.md index 0bb506b..2558785 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html), with the exception that 0.x versions can break between minor versions. -## [Unreleased] +## [0.9.0] - 2022-07-11 ### Changed - More strict parsing of hostname (authority) part of URLs. Applies to emails, plain domains URLs (e.g. `example.com/foo`) and URLs with @@ -92,7 +92,7 @@ Initial release of linkify, a Rust library to find links such as URLs and email addresses in plain text, handling surrounding punctuation correctly. -[Unreleased]: https://github.com/robinst/linkify/compare/0.8.1...HEAD +[0.9.0]: https://github.com/robinst/linkify/compare/0.8.1...0.9.0 [0.8.1]: https://github.com/robinst/linkify/compare/0.8.0...0.8.1 [0.8.0]: https://github.com/robinst/linkify/compare/0.7.0...0.8.0 [0.7.0]: https://github.com/robinst/linkify/compare/0.6.0...0.7.0 diff --git a/Cargo.toml b/Cargo.toml index ec3be03..7b63ca1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "linkify" -version = "0.8.1" # remember to update html_root_url +version = "0.9.0" # remember to update html_root_url authors = ["Robin Stocker "] edition = "2018" license = "MIT OR Apache-2.0" diff --git a/src/lib.rs b/src/lib.rs index fd6a8a3..3f942b2 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -115,7 +115,7 @@ //! [RFC 5321]: https://datatracker.ietf.org/doc/html/rfc5321 //! [RFC 6531]: https://datatracker.ietf.org/doc/html/rfc6531 -#![doc(html_root_url = "https://docs.rs/linkify/0.8.1")] +#![doc(html_root_url = "https://docs.rs/linkify/0.9.0")] #![deny(warnings)] #![deny(missing_docs)] #![deny(missing_debug_implementations)]