Skip to content

Commit f192ca0

Browse files
committed
1 parent 4dcc71e commit f192ca0

File tree

1 file changed

+51
-0
lines changed

1 file changed

+51
-0
lines changed

CHANGELOG.md

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
6+
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
7+
8+
## [0.6.0] - 2016-11-07
9+
### Added
10+
- New feature to extract links like `www.example.com` as well (no need for
11+
`http://`, but must start with `www.`).
12+
This results a link with type `LinkType.WWW`.
13+
To opt out of this, specify which link types should be extracted by calling
14+
the `linkTypes` method on the builder. Thanks to @MTDdk for contributing this!
15+
16+
## [0.5.0] - 2016-06-26
17+
### Changed
18+
- Stop URLs at more invalid characters, notably `<` and `>` (#7). According to
19+
RFC 3987, angle brackets are not allowed in URLs, and other linkers don't seem
20+
to allow them either.
21+
22+
## [0.4.0] - 2016-02-11
23+
### Changed
24+
- Treat more special characters as trailing delimiters to not include `">`,
25+
`"/>` and `");` at the end of URLs (#3)
26+
### Fixed
27+
- Fix unexpected link end with unfinished delimiter pairs in URLs (#5)
28+
- Fix Android incompatibility by not using `java.util.Objects`
29+
30+
## [0.3.0] - 2016-01-16
31+
### Changed
32+
- Stop recognizing "abc://foo" in "1abc://foo". A digit doesn't feel enough like
33+
a separator, it's more like an invalid scheme.
34+
35+
## [0.2.0] - 2015-06-14
36+
### Changed
37+
- Require domains of emails to have dot by default (multiple parts, e.g.
38+
`foo@com` is not matched by default).
39+
Can be disabled by calling `emailDomainMustHaveDot(false)` on builder.
40+
41+
42+
## 0.1.0 - 2015-06-13
43+
### Added
44+
- Initial release!
45+
46+
47+
[0.6.0]: https://github.com/robinst/autolink-java/compare/autolink-0.5.0...autolink-0.6.0
48+
[0.5.0]: https://github.com/robinst/autolink-java/compare/autolink-0.4.0...autolink-0.5.0
49+
[0.4.0]: https://github.com/robinst/autolink-java/compare/autolink-0.3.0...autolink-0.4.0
50+
[0.3.0]: https://github.com/robinst/autolink-java/compare/autolink-0.2.0...autolink-0.3.0
51+
[0.2.0]: https://github.com/robinst/autolink-java/compare/autolink-0.1.0...autolink-0.2.0

0 commit comments

Comments
 (0)