Skip to content

Commit a420e93

Browse files
committed
chore(release): version 1.0.0
1 parent 6c3e19a commit a420e93

File tree

3 files changed

+23
-2
lines changed

3 files changed

+23
-2
lines changed

CHANGELOG.md

+21
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
## 1.0.0
2+
3+
- BREAKING: revamp controller structure for `TypeThisController`
4+
- docs(README): update documentation to encorporate the controller design change
5+
- docs(example): update example app with new controller structure
6+
7+
### Changes
8+
9+
This is how the controller looks and works now. More details in [README](./README.md#control-the-animation).
10+
11+
```dart
12+
final controller = TypeThisController();
13+
14+
TypeThis(
15+
string: 'Example String',
16+
controller: controller,
17+
);
18+
19+
controller.reset();
20+
```
21+
122
## 0.3.0
223

324
- feat: add rich text effects using `TypeThisMatcher` that works with regex pattern

example/pubspec.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ packages:
174174
path: ".."
175175
relative: true
176176
source: path
177-
version: "0.3.0"
177+
version: "1.0.0"
178178
vector_math:
179179
dependency: transitive
180180
description:

pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ issue_tracker: https://github.com/thecodexhub/typethis/issues
55
homepage: https://github.com/thecodexhub/typethis
66
documentation: https://github.com/thecodexhub/typethis
77

8-
version: 0.3.0
8+
version: 1.0.0
99

1010
environment:
1111
sdk: ">=3.1.3 <4.0.0"

0 commit comments

Comments
 (0)