Skip to content

Commit

Permalink
chore(release): publish v0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaosongxiaosong committed Oct 12, 2019
1 parent 7fa4f81 commit 6476c47
Show file tree
Hide file tree
Showing 24 changed files with 146 additions and 22 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Expand Up @@ -3,6 +3,22 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.9.0](https://github.com/goblin-laboratory/react-player/compare/v0.8.3...v0.9.0) (2019-10-12)


### Bug Fixes

* 修复 destroyPlayer 时判断条件错误导致 hls 未正常销毁问题 ([7fa4f81](https://github.com/goblin-laboratory/react-player/commit/7fa4f81))


### Features

* 只有 src 变化时才重新播放,避免 useEffect 需要比较太多数据,解决 flv 与 hls 相互切换时播放异常 ([e291ea2](https://github.com/goblin-laboratory/react-player/commit/e291ea2))





## [0.8.3](https://github.com/goblin-laboratory/react-player/compare/v0.8.2...v0.8.3) (2019-09-06)


Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Expand Up @@ -2,7 +2,7 @@
"packages": [
"packages/*"
],
"version": "0.8.3",
"version": "0.9.0",
"npmClient": "yarn",
"useWorkspaces": true,
"command": {
Expand Down
11 changes: 11 additions & 0 deletions packages/reactjs-player-demo/CHANGELOG.md
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.9.0](https://github.com/goblin-laboratory/reactjs-player/compare/v0.8.3...v0.9.0) (2019-10-12)


### Features

* 只有 src 变化时才重新播放,避免 useEffect 需要比较太多数据,解决 flv 与 hls 相互切换时播放异常 ([e291ea2](https://github.com/goblin-laboratory/reactjs-player/commit/e291ea2))





## [0.8.3](https://github.com/goblin-laboratory/reactjs-player/compare/v0.8.2...v0.8.3) (2019-09-06)

**Note:** Version bump only for package @reactjs-player/demo
Expand Down
4 changes: 2 additions & 2 deletions packages/reactjs-player-demo/package.json
@@ -1,7 +1,7 @@
{
"name": "@reactjs-player/demo",
"private": true,
"version": "0.8.3",
"version": "0.9.0",
"description": "> TODO: description",
"author": "xiaosong <kunkkaco@gmail.com>",
"homepage": "https://goblin-laboratory.github.io/reactjs-player/",
Expand Down Expand Up @@ -33,7 +33,7 @@
"react-dom": "^16.9.0",
"react-scripts": "^3.1.0",
"react-swf": "^1.0.7",
"reactjs-player": "^0.8.3",
"reactjs-player": "^0.9.0",
"ua-parser-js": "^0.7.20"
},
"browserslist": {
Expand Down
11 changes: 11 additions & 0 deletions packages/reactjs-player/CHANGELOG.md
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.9.0](https://github.com/goblin-laboratory/reactjs-player/compare/v0.8.3...v0.9.0) (2019-10-12)


### Features

* 只有 src 变化时才重新播放,避免 useEffect 需要比较太多数据,解决 flv 与 hls 相互切换时播放异常 ([e291ea2](https://github.com/goblin-laboratory/reactjs-player/commit/e291ea2))





## [0.8.3](https://github.com/goblin-laboratory/reactjs-player/compare/v0.8.2...v0.8.3) (2019-09-06)


Expand Down
20 changes: 10 additions & 10 deletions packages/reactjs-player/package.json
@@ -1,6 +1,6 @@
{
"name": "reactjs-player",
"version": "0.8.3",
"version": "0.9.0",
"description": "基于 react hooks 的 video 播放组件,结构简单,代码简洁,扩展方便。",
"keywords": [
"react",
Expand Down Expand Up @@ -57,14 +57,14 @@
"react-swf": "^1.0.7"
},
"dependencies": {
"@reactjs-player/use-flvjs": "^0.8.1",
"@reactjs-player/use-fullscreen": "^0.8.1",
"@reactjs-player/use-hlsjs": "^0.8.1",
"@reactjs-player/use-native": "^0.8.1",
"@reactjs-player/use-pip": "^0.8.1",
"@reactjs-player/use-playback-rate": "^0.8.1",
"@reactjs-player/use-state": "^0.8.1",
"@reactjs-player/use-time": "^0.8.3",
"@reactjs-player/use-volume": "^0.8.1"
"@reactjs-player/use-flvjs": "^0.9.0",
"@reactjs-player/use-fullscreen": "^0.9.0",
"@reactjs-player/use-hlsjs": "^0.9.0",
"@reactjs-player/use-native": "^0.9.0",
"@reactjs-player/use-pip": "^0.9.0",
"@reactjs-player/use-playback-rate": "^0.9.0",
"@reactjs-player/use-state": "^0.9.0",
"@reactjs-player/use-time": "^0.9.0",
"@reactjs-player/use-volume": "^0.9.0"
}
}
11 changes: 11 additions & 0 deletions packages/use-flvjs/CHANGELOG.md
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.9.0](https://github.com/goblin-laboratory/reactjs-player/compare/v0.8.3...v0.9.0) (2019-10-12)


### Features

* 只有 src 变化时才重新播放,避免 useEffect 需要比较太多数据,解决 flv 与 hls 相互切换时播放异常 ([e291ea2](https://github.com/goblin-laboratory/reactjs-player/commit/e291ea2))





## [0.8.1](https://github.com/goblin-laboratory/reactjs-player/compare/v0.8.0...v0.8.1) (2019-08-27)


Expand Down
2 changes: 1 addition & 1 deletion packages/use-flvjs/package.json
@@ -1,6 +1,6 @@
{
"name": "@reactjs-player/use-flvjs",
"version": "0.8.1",
"version": "0.9.0",
"description": "> TODO: description",
"author": "xiaosong <kunkkaco@gmail.com>",
"homepage": "https://github.com/goblin-laboratory/reactjs-player/blob/master/packages/use-flvjs/README.md",
Expand Down
8 changes: 8 additions & 0 deletions packages/use-fullscreen/CHANGELOG.md
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.9.0](https://github.com/goblin-laboratory/reactjs-player/compare/v0.8.3...v0.9.0) (2019-10-12)

**Note:** Version bump only for package @reactjs-player/use-fullscreen





## [0.8.1](https://github.com/goblin-laboratory/reactjs-player/compare/v0.8.0...v0.8.1) (2019-08-27)

**Note:** Version bump only for package @reactjs-player/use-fullscreen
Expand Down
2 changes: 1 addition & 1 deletion packages/use-fullscreen/package.json
@@ -1,6 +1,6 @@
{
"name": "@reactjs-player/use-fullscreen",
"version": "0.8.1",
"version": "0.9.0",
"description": "> TODO: description",
"author": "xiaosong <kunkkaco@gmail.com>",
"homepage": "https://github.com/goblin-laboratory/reactjs-player/blob/master/packages/use-fullscreen/README.md",
Expand Down
16 changes: 16 additions & 0 deletions packages/use-hlsjs/CHANGELOG.md
Expand Up @@ -3,6 +3,22 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.9.0](https://github.com/goblin-laboratory/reactjs-player/compare/v0.8.3...v0.9.0) (2019-10-12)


### Bug Fixes

* 修复 destroyPlayer 时判断条件错误导致 hls 未正常销毁问题 ([7fa4f81](https://github.com/goblin-laboratory/reactjs-player/commit/7fa4f81))


### Features

* 只有 src 变化时才重新播放,避免 useEffect 需要比较太多数据,解决 flv 与 hls 相互切换时播放异常 ([e291ea2](https://github.com/goblin-laboratory/reactjs-player/commit/e291ea2))





## [0.8.1](https://github.com/goblin-laboratory/reactjs-player/compare/v0.8.0...v0.8.1) (2019-08-27)


Expand Down
2 changes: 1 addition & 1 deletion packages/use-hlsjs/package.json
@@ -1,6 +1,6 @@
{
"name": "@reactjs-player/use-hlsjs",
"version": "0.8.1",
"version": "0.9.0",
"description": "> TODO: description",
"author": "xiaosong <kunkkaco@gmail.com>",
"homepage": "https://github.com/goblin-laboratory/reactjs-player/blob/master/packages/use-hlsjs/README.md",
Expand Down
11 changes: 11 additions & 0 deletions packages/use-native/CHANGELOG.md
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.9.0](https://github.com/goblin-laboratory/reactjs-player/compare/v0.8.3...v0.9.0) (2019-10-12)


### Features

* 只有 src 变化时才重新播放,避免 useEffect 需要比较太多数据,解决 flv 与 hls 相互切换时播放异常 ([e291ea2](https://github.com/goblin-laboratory/reactjs-player/commit/e291ea2))





## [0.8.1](https://github.com/goblin-laboratory/reactjs-player/compare/v0.8.0...v0.8.1) (2019-08-27)

**Note:** Version bump only for package @reactjs-player/use-native
Expand Down
2 changes: 1 addition & 1 deletion packages/use-native/package.json
@@ -1,6 +1,6 @@
{
"name": "@reactjs-player/use-native",
"version": "0.8.1",
"version": "0.9.0",
"description": "> TODO: description",
"author": "xiaosong <kunkkaco@gmail.com>",
"homepage": "https://github.com/goblin-laboratory/reactjs-player/blob/master/packages/use-native/README.md",
Expand Down
8 changes: 8 additions & 0 deletions packages/use-pip/CHANGELOG.md
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.9.0](https://github.com/goblin-laboratory/reactjs-player/compare/v0.8.3...v0.9.0) (2019-10-12)

**Note:** Version bump only for package @reactjs-player/use-pip





## [0.8.1](https://github.com/goblin-laboratory/reactjs-player/compare/v0.8.0...v0.8.1) (2019-08-27)

**Note:** Version bump only for package @reactjs-player/use-pip
Expand Down
2 changes: 1 addition & 1 deletion packages/use-pip/package.json
@@ -1,6 +1,6 @@
{
"name": "@reactjs-player/use-pip",
"version": "0.8.1",
"version": "0.9.0",
"description": "> TODO: description",
"author": "xiaosong <kunkkaco@gmail.com>",
"homepage": "https://github.com/goblin-laboratory/reactjs-player/blob/master/packages/use-pip/README.md",
Expand Down
8 changes: 8 additions & 0 deletions packages/use-playback-rate/CHANGELOG.md
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.9.0](https://github.com/goblin-laboratory/reactjs-player/compare/v0.8.3...v0.9.0) (2019-10-12)

**Note:** Version bump only for package @reactjs-player/use-playback-rate





## [0.8.1](https://github.com/goblin-laboratory/reactjs-player/compare/v0.8.0...v0.8.1) (2019-08-27)

**Note:** Version bump only for package @reactjs-player/use-playback-rate
Expand Down
2 changes: 1 addition & 1 deletion packages/use-playback-rate/package.json
@@ -1,6 +1,6 @@
{
"name": "@reactjs-player/use-playback-rate",
"version": "0.8.1",
"version": "0.9.0",
"description": "> TODO: description",
"author": "xiaosong <kunkkaco@gmail.com>",
"homepage": "https://github.com/goblin-laboratory/reactjs-player/blob/master/packages/use-playback-rate/README.md",
Expand Down
8 changes: 8 additions & 0 deletions packages/use-state/CHANGELOG.md
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.9.0](https://github.com/goblin-laboratory/reactjs-player/compare/v0.8.3...v0.9.0) (2019-10-12)

**Note:** Version bump only for package @reactjs-player/use-state





## [0.8.1](https://github.com/goblin-laboratory/reactjs-player/compare/v0.8.0...v0.8.1) (2019-08-27)

**Note:** Version bump only for package @reactjs-player/use-state
Expand Down
2 changes: 1 addition & 1 deletion packages/use-state/package.json
@@ -1,6 +1,6 @@
{
"name": "@reactjs-player/use-state",
"version": "0.8.1",
"version": "0.9.0",
"description": "> TODO: description",
"author": "xiaosong <kunkkaco@gmail.com>",
"homepage": "https://github.com/goblin-laboratory/reactjs-player/blob/master/packages/use-state/README.md",
Expand Down
8 changes: 8 additions & 0 deletions packages/use-time/CHANGELOG.md
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.9.0](https://github.com/goblin-laboratory/reactjs-player/compare/v0.8.3...v0.9.0) (2019-10-12)

**Note:** Version bump only for package @reactjs-player/use-time





## [0.8.3](https://github.com/goblin-laboratory/reactjs-player/compare/v0.8.2...v0.8.3) (2019-09-06)


Expand Down
2 changes: 1 addition & 1 deletion packages/use-time/package.json
@@ -1,6 +1,6 @@
{
"name": "@reactjs-player/use-time",
"version": "0.8.3",
"version": "0.9.0",
"description": "> TODO: description",
"author": "xiaosong <kunkkaco@gmail.com>",
"homepage": "https://github.com/goblin-laboratory/reactjs-player/blob/master/packages/use-time/README.md",
Expand Down
8 changes: 8 additions & 0 deletions packages/use-volume/CHANGELOG.md
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.9.0](https://github.com/goblin-laboratory/reactjs-player/compare/v0.8.3...v0.9.0) (2019-10-12)

**Note:** Version bump only for package @reactjs-player/use-volume





## [0.8.1](https://github.com/goblin-laboratory/reactjs-player/compare/v0.8.0...v0.8.1) (2019-08-27)

**Note:** Version bump only for package @reactjs-player/use-volume
Expand Down
2 changes: 1 addition & 1 deletion packages/use-volume/package.json
@@ -1,6 +1,6 @@
{
"name": "@reactjs-player/use-volume",
"version": "0.8.1",
"version": "0.9.0",
"description": "> TODO: description",
"author": "xiaosong <kunkkaco@gmail.com>",
"homepage": "https://github.com/goblin-laboratory/reactjs-player/blob/master/packages/use-volume/README.md",
Expand Down

0 comments on commit 6476c47

Please sign in to comment.