Skip to content

Commit

Permalink
update version to v3.26.0
Browse files Browse the repository at this point in the history
  • Loading branch information
peaBerberian committed Jun 10, 2021
1 parent b087ef9 commit 66900fd
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 18 deletions.
9 changes: 1 addition & 8 deletions CHANGELOG.md
@@ -1,13 +1,6 @@
# Changelog

## v3.25.1 (2021/06/10)

### Bug fixes

- fix import path for the experimental `VideoThumbnailLoader` tool


## v3.25.0 (2021/06/10)
## v3.26.0 (2021/06/10)

### Features

Expand Down
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
3.25.1
3.26.0
4 changes: 2 additions & 2 deletions dist/rx-player.js
Expand Up @@ -56046,7 +56046,7 @@ var Player = /*#__PURE__*/function (_EventEmitter) {
videoElement.preload = "auto";
_this.version =
/* PLAYER_VERSION */
"3.25.1";
"3.26.0";
_this.log = log/* default */.Z;
_this.state = "STOPPED";
_this.videoElement = videoElement;
Expand Down Expand Up @@ -58824,7 +58824,7 @@ var Player = /*#__PURE__*/function (_EventEmitter) {

Player.version =
/* PLAYER_VERSION */
"3.25.1";
"3.26.0";
/* harmony default export */ var public_api = (Player);
;// CONCATENATED MODULE: ./src/core/api/index.ts
/**
Expand Down
2 changes: 1 addition & 1 deletion dist/rx-player.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
@@ -1,7 +1,7 @@
{
"name": "rx-player",
"author": "Canal+",
"version": "3.25.1",
"version": "3.26.0",
"description": "Canal+ HTML5 Video Player",
"main": "./dist/rx-player.js",
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion sonar-project.properties
@@ -1,6 +1,6 @@
sonar.projectKey=rx-player
sonar.projectName=rx-player
sonar.projectVersion=3.25.1
sonar.projectVersion=3.26.0
sonar.sources=./src,./demo,./tests
sonar.exclusions=demo/full/bundle.js,demo/standalone/lib.js,demo/bundle.js
sonar.host.url=https://sonarcloud.io
4 changes: 2 additions & 2 deletions src/core/api/public_api.ts
Expand Up @@ -497,7 +497,7 @@ class Player extends EventEmitter<IPublicAPIEvent> {
// See: https://bugzilla.mozilla.org/show_bug.cgi?id=1194624
videoElement.preload = "auto";

this.version = /* PLAYER_VERSION */"3.25.1";
this.version = /* PLAYER_VERSION */"3.26.0";
this.log = log;
this.state = "STOPPED";
this.videoElement = videoElement;
Expand Down Expand Up @@ -2977,7 +2977,7 @@ class Player extends EventEmitter<IPublicAPIEvent> {
return activeRepresentations[currentPeriod.id];
}
}
Player.version = /* PLAYER_VERSION */"3.25.1";
Player.version = /* PLAYER_VERSION */"3.26.0";

export default Player;
export { IStreamEventData };

0 comments on commit 66900fd

Please sign in to comment.