Skip to content

Commit f55f795

Browse files
committed
Update READM, CHANGELOG, version
1 parent 40f3b9a commit f55f795

File tree

4 files changed

+16
-3
lines changed

4 files changed

+16
-3
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,19 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [4.0.0] - 2023-02-13
8+
### Added
9+
- `CrossfadeEffect` - cross fades in a new widget
10+
- `Adapter.direction` - optionally update in only one direction
11+
12+
### Changed
13+
- major refactor of `Adapter`
14+
- fix issue with adapters generating errors on disposed `Animate` instances
15+
- improve smoothing for `Adapter.animated`
16+
- improve adapter examples
17+
- changed `ThenEffect` functionality to establish a new baseline time
18+
- cleaned up tests & added tests for new effects
19+
720
## [3.1.0] - 2023-01-30
821
### Added
922
- added a few fun examples to the `everything_view`

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ Sequencing with ThenEffect
127127
----------------------------------------
128128
`ThenEffect` is a special convenience "effect" that makes it easier to sequence
129129
effects. It does this by establishing a new baseline time equal to the previous
130-
effect's end time and its own optional [delay]. All subsequent effect delays are
130+
effect's end time and its own optional `delay`. All subsequent effect delays are
131131
relative to this new baseline.
132132

133133
In the following example, the slide would run 200ms after the fade ended.

example/pubspec.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ packages:
6161
path: ".."
6262
relative: true
6363
source: path
64-
version: "3.1.0"
64+
version: "4.0.0"
6565
flutter_lints:
6666
dependency: "direct dev"
6767
description:

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: flutter_animate
22
description: Add beautiful animated effects & builders in Flutter, via an easy, customizable, unified API.
3-
version: 3.1.0
3+
version: 4.0.0
44
repository: https://github.com/gskinner/flutter_animate
55
issue_tracker: https://github.com/gskinner/flutter_animate/issues
66

0 commit comments

Comments
 (0)