diff --git a/CHANGELOG.md b/CHANGELOG.md index ab6dfe7..a145686 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +## 1.1.0 + +- Add alternate scroll physics:- `PageViewTypeScrollPhysics`. + +Similar to PageView scroll physics. This disables friction effect and allows the user to land on the next item only most of the time, instead of the free-hand scrolling that is provided with the default `InfiniteScrollPhysics`. + +- Fixed issue:- 'FixedScrollMetrics' is not a subtype of type 'InfiniteExtentMetrics' in type cast. Thanks to [PR #19](https://github.com/GeekyAnts/infinite-carousel-flutter/pull/19) +- Update package to support Flutter 3.19 + ## 1.0.3 - Upgrade package to support flutter 3.10 diff --git a/README.md b/README.md index 8f64f6c..0f84f53 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,7 @@ or ```yaml dependencies: - infinite_carousel: ^1.0.3 + infinite_carousel: ^1.1.0 ``` After that import the package. diff --git a/example/pubspec.lock b/example/pubspec.lock index 9cbc392..19eb725 100644 --- a/example/pubspec.lock +++ b/example/pubspec.lock @@ -73,7 +73,7 @@ packages: path: ".." relative: true source: path - version: "1.0.3" + version: "1.1.0" leak_tracker: dependency: transitive description: diff --git a/pubspec.yaml b/pubspec.yaml index d69ea9d..e249bb0 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: infinite_carousel -description: Carousel in flutter. Supports infinite looping and gives control over anchor and velocity. -version: 1.0.3 +description: Carousel in flutter. Supports features like infinite looping, friction effect, multiple scroll physics and control over item anchor and velocity. +version: 1.1.0 homepage: https://github.com/GeekyAnts/infinite-carousel-flutter repository: https://github.com/GeekyAnts/infinite-carousel-flutter