Skip to content

Commit 3be62ab

Browse files
committed
Version 0.9.0
1 parent b6ad06e commit 3be62ab

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
66
This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html),
77
with the exception that 0.x versions can break between minor versions.
88

9-
## [Unreleased]
9+
## [0.9.0] - 2022-07-11
1010
### Changed
1111
- More strict parsing of hostname (authority) part of URLs. Applies to
1212
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
9292
addresses in plain text, handling surrounding punctuation correctly.
9393

9494

95-
[Unreleased]: https://github.com/robinst/linkify/compare/0.8.1...HEAD
95+
[0.9.0]: https://github.com/robinst/linkify/compare/0.8.1...0.9.0
9696
[0.8.1]: https://github.com/robinst/linkify/compare/0.8.0...0.8.1
9797
[0.8.0]: https://github.com/robinst/linkify/compare/0.7.0...0.8.0
9898
[0.7.0]: https://github.com/robinst/linkify/compare/0.6.0...0.7.0

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "linkify"
3-
version = "0.8.1" # remember to update html_root_url
3+
version = "0.9.0" # remember to update html_root_url
44
authors = ["Robin Stocker <[email protected]>"]
55
edition = "2018"
66
license = "MIT OR Apache-2.0"

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@
115115
//! [RFC 5321]: https://datatracker.ietf.org/doc/html/rfc5321
116116
//! [RFC 6531]: https://datatracker.ietf.org/doc/html/rfc6531
117117
118-
#![doc(html_root_url = "https://docs.rs/linkify/0.8.1")]
118+
#![doc(html_root_url = "https://docs.rs/linkify/0.9.0")]
119119
#![deny(warnings)]
120120
#![deny(missing_docs)]
121121
#![deny(missing_debug_implementations)]

0 commit comments

Comments
 (0)