diff --git a/CHANGELOG.md b/CHANGELOG.md index e6619dfed..fee3910cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ + +## [2.8.3](https://github.com/videojs/http-streaming/compare/v2.8.2...v2.8.3) (2021-06-22) + +### Bug Fixes + +* don't decay average bandwidth value if system bandwidth did not change ([#1137](https://github.com/videojs/http-streaming/issues/1137)) ([d26abb1](https://github.com/videojs/http-streaming/commit/d26abb1)) + +### Tests + +* moving average should not decay without new data ([#1141](https://github.com/videojs/http-streaming/issues/1141)) ([98d8368](https://github.com/videojs/http-streaming/commit/98d8368)), closes [#1137](https://github.com/videojs/http-streaming/issues/1137) + ## [2.8.2](https://github.com/videojs/http-streaming/compare/v2.8.1...v2.8.2) (2021-05-20) diff --git a/package-lock.json b/package-lock.json index 3d6ba7246..78164f6c2 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "@videojs/http-streaming", - "version": "2.8.2", + "version": "2.8.3", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 6aea11ca2..d8084aa08 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@videojs/http-streaming", - "version": "2.8.2", + "version": "2.8.3", "description": "Play back HLS and DASH with Video.js, even where it's not natively supported", "main": "dist/videojs-http-streaming.cjs.js", "module": "dist/videojs-http-streaming.es.js",