diff --git a/CHANGELOG.md b/CHANGELOG.md index b4f424e9..7aacde3f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [3.0.1] + +* Fixed prefill not filling past the scroll threshold + ## [3.0.0] Changes since 3.0.0-rc.1: @@ -107,6 +111,7 @@ See [LICENSE](LICENSE) for more details. * Extensible through events * Added an extensive test suite +[3.0.1]: https://github.com/webcreate/infinite-ajax-scroll/compare/3.0.0...3.0.1 [3.0.0]: https://github.com/webcreate/infinite-ajax-scroll/compare/3.0.0-rc.1...3.0.0 [3.0.0-rc.1]: https://github.com/webcreate/infinite-ajax-scroll/compare/v2.3.1...3.0.0-rc.1 [2.3.1]: https://github.com/webcreate/infinite-ajax-scroll/compare/v2.3.0...v2.3.1 diff --git a/README.md b/README.md index 5bc434de..1208a79e 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ More features, documentation and examples available at: https://docs.infiniteaja Get up and running in no time by linking directly to Infinite Ajax Scroll on [unpkg](https://unpkg.com). ```markup - + ``` Place this code right before the `` tag on each template or page that you want to use infinite scroll on. diff --git a/package-lock.json b/package-lock.json index 0df72533..f425c169 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@webcreate/infinite-ajax-scroll", - "version": "3.0.0", + "version": "3.0.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@webcreate/infinite-ajax-scroll", - "version": "3.0.0", + "version": "3.0.1", "license": "AGPL-3.0-only", "dependencies": { "extend": "^3.0.2", diff --git a/package.json b/package.json index 9dbfdd22..8bd8251b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@webcreate/infinite-ajax-scroll", - "version": "3.0.0", + "version": "3.0.1", "title": "Infinite Ajax Scroll", "description": "Turn your existing pagination into infinite scrolling pages with ease", "license": "AGPL-3.0-only",