diff --git a/CHANGELOG.md b/CHANGELOG.md index bfeda6a..2614d16 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,24 @@ +## 1.0.0 + +- BREAKING: revamp controller structure for `TypeThisController` +- docs(README): update documentation to encorporate the controller design change +- docs(example): update example app with new controller structure + +### Changes + +This is how the controller looks and works now. More details in [README](./README.md#control-the-animation). + +```dart +final controller = TypeThisController(); + +TypeThis( + string: 'Example String', + controller: controller, +); + +controller.reset(); +``` + ## 0.3.0 - feat: add rich text effects using `TypeThisMatcher` that works with regex pattern diff --git a/example/pubspec.lock b/example/pubspec.lock index 6d6a098..65fb1d1 100644 --- a/example/pubspec.lock +++ b/example/pubspec.lock @@ -174,7 +174,7 @@ packages: path: ".." relative: true source: path - version: "0.3.0" + version: "1.0.0" vector_math: dependency: transitive description: diff --git a/pubspec.yaml b/pubspec.yaml index b5c3f0e..e532726 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -5,7 +5,7 @@ issue_tracker: https://github.com/thecodexhub/typethis/issues homepage: https://github.com/thecodexhub/typethis documentation: https://github.com/thecodexhub/typethis -version: 0.3.0 +version: 1.0.0 environment: sdk: ">=3.1.3 <4.0.0"