diff --git a/CCHLinkTextView.podspec b/CCHLinkTextView.podspec index 2eedba3..04db401 100644 --- a/CCHLinkTextView.podspec +++ b/CCHLinkTextView.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'CCHLinkTextView' - s.version = '1.1.1' + s.version = '1.2.0' s.license = 'MIT' s.summary = 'UITextView subclass with tappable links.' s.homepage = 'https://github.com/choefele/CCHLinkTextView' diff --git a/CHANGES.md b/CHANGES.md index 67fff4a..15231cd 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,6 +1,10 @@ Changes ======= +## 1.2.0 + +- Changing the `CCHLinkTextView`'s `editable` property to `NO` now disables link recognition. This allows you to optionally turn on/off the functionality that provides tappable links, but then revert to normal selection/editing text behavior when desired. Thanks to patricklynch for the pull request. + ## 1.1.1 - Fixed a bug where a link didn't handle touch up events correctly. Thanks to zeevvax for reporting the issue.