Skip to content

Commit

Permalink
chore(release): version 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
thecodexhub committed Feb 3, 2024
1 parent 6c3e19a commit a420e93
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 2 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ packages:
path: ".."
relative: true
source: path
version: "0.3.0"
version: "1.0.0"
vector_math:
dependency: transitive
description:
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit a420e93

Please sign in to comment.