Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 1.1.3

- Updated the `hooks` dependency to `^2.0.0`.
- Bumped the minimum Dart SDK constraint to 3.10.0 and the minimum Flutter SDK to 3.38.0, matching the new requirement from `hooks` 2.0.

## 1.1.2

- Prevent an out-of-bounds URL index in a string template from causing a crash. If an index is out of bounds, the link will simply be non-interactive.
Expand Down
8 changes: 4 additions & 4 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: linked_text
description: >-
A Flutter widget that renders text with interpolated tappable links using a
simple template syntax.
version: 1.1.2
version: 1.1.3
repository: https://github.com/pento/linked_text
topics:
- text
Expand All @@ -12,13 +12,13 @@ topics:
- widget

environment:
sdk: ">=3.6.0 <4.0.0"
flutter: ">=3.22.0"
sdk: ">=3.10.0 <4.0.0"
flutter: ">=3.38.0"

dependencies:
flutter:
sdk: flutter
hooks: ^1.0.0
hooks: ^2.0.0
url_launcher: ^6.2.0

dev_dependencies:
Expand Down