mirror of
https://github.com/videojs/video.js.git
synced 2025-02-02 11:34:50 +02:00
@gkatsev added ability to release next tag from master. closes #2894
This commit is contained in:
parent
5bb1a76c4e
commit
44edb12700
@ -8,6 +8,7 @@ CHANGELOG
|
|||||||
* @gkatsev added a Player#reset method. Fixes #2852 ([view](https://github.com/videojs/video.js/pull/2880))
|
* @gkatsev added a Player#reset method. Fixes #2852 ([view](https://github.com/videojs/video.js/pull/2880))
|
||||||
* @chemoish emulated HTMLTrackElement to enable track load events ([view](https://github.com/videojs/video.js/pull/2804))
|
* @chemoish emulated HTMLTrackElement to enable track load events ([view](https://github.com/videojs/video.js/pull/2804))
|
||||||
* @gkatsev added nullcheck for cues in updateForTrack. Fixes #2870 ([view](https://github.com/videojs/video.js/pull/2896))
|
* @gkatsev added nullcheck for cues in updateForTrack. Fixes #2870 ([view](https://github.com/videojs/video.js/pull/2896))
|
||||||
|
* @gkatsev added ability to release next tag from master ([view](https://github.com/videojs/video.js/pull/2894))
|
||||||
|
|
||||||
--------------------
|
--------------------
|
||||||
|
|
||||||
|
26
contrib.json
26
contrib.json
@ -250,12 +250,33 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
|
||||||
|
"next": {
|
||||||
|
"patch": {
|
||||||
|
"description": "Create a patch release and tag it @next on npm",
|
||||||
|
"release_type": "patch",
|
||||||
|
"steps": [{ "include": "release run_next" }]
|
||||||
|
},
|
||||||
|
"minor": {
|
||||||
|
"description": "Create a minor release and tag it @next on npm",
|
||||||
|
"release_type": "minor",
|
||||||
|
"steps": [{ "include": "release run_next" }]
|
||||||
|
},
|
||||||
|
"major": {
|
||||||
|
"description": "Create a major release and tag it @next on npm",
|
||||||
|
"release_type": "major",
|
||||||
|
"steps": [{ "include": "release run_next" }]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
"prerelease": {
|
"prerelease": {
|
||||||
"release_type": "prerelease",
|
"release_type": "prerelease",
|
||||||
|
"steps": [{ "include": "release run_next" }]
|
||||||
|
},
|
||||||
|
|
||||||
|
"run_next": {
|
||||||
"steps": [
|
"steps": [
|
||||||
[ "git checkout master", "Checkout the developmet branch" ],
|
|
||||||
[ "git pull upstream master", "Update the developmet branch" ],
|
|
||||||
{ "include": "branch check" },
|
{ "include": "branch check" },
|
||||||
|
{ "include": "update local master" },
|
||||||
[ "git checkout -b temp-release-branch master","Create a temporary branch for the dist" ],
|
[ "git checkout -b temp-release-branch master","Create a temporary branch for the dist" ],
|
||||||
[ "grunt version:{{release_type}}", "Bump package versions" ],
|
[ "grunt version:{{release_type}}", "Bump package versions" ],
|
||||||
[ "./build/bin/version", "Return the current VJS Version from the package.json file", "version" ],
|
[ "./build/bin/version", "Return the current VJS Version from the package.json file", "version" ],
|
||||||
@ -274,6 +295,7 @@
|
|||||||
[ "git branch -D temp-release-branch", "Delete the temp release branch" ]
|
[ "git branch -D temp-release-branch", "Delete the temp release branch" ]
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
|
||||||
"run": {
|
"run": {
|
||||||
"steps": [
|
"steps": [
|
||||||
{ "include": "branch check" },
|
{ "include": "branch check" },
|
||||||
|
Loading…
x
Reference in New Issue
Block a user