Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

github-semantic-version

Package Overview
Dependencies
Maintainers
4
Versions
33
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

github-semantic-version - npm Package Compare versions

Comparing version
7.5.0
to
7.6.0
+3
-1
CHANGELOG.md

@@ -6,4 +6,5 @@ # Change Log

## 2018-03-12 - [7.5.0 - current version]
## 2018-03-12 - [7.6.0 - current version]
- 7.6.0 - ([26](https://github.com/ericclemmons/github-semantic-version/pull/26)) - Add new released label process (@milesj)
- 7.5.0 - ([27](https://github.com/ericclemmons/github-semantic-version/pull/27)) - Add new --check option + BuildKite support (@milesj)

@@ -150,1 +151,2 @@ - 7.4.0 - ([25](https://github.com/ericclemmons/github-semantic-version/pull/25)) - Add new abortOnMissingLabel option (@milesj)

{
"name": "github-semantic-version",
"version": "7.5.0",
"version": "7.6.0",
"description": "Automated semantic version releases powered by Github Issues.",

@@ -5,0 +5,0 @@ "bin": {

+35
-27

@@ -49,6 +49,8 @@ # github-semantic-version

```json
"gsv": {
"majorLabel": "Version: Major",
"minorLabel": "Version: Minor",
"patchLabel": "Version: Patch"
{
"gsv": {
"majorLabel": "Version: Major",
"minorLabel": "Version: Minor",
"patchLabel": "Version: Patch"
}
}

@@ -72,7 +74,9 @@ ```

```json
"gsv": {
"majorLabel": "Version: Major",
"minorLabel": "Version: Minor",
"patchLabel": "Version: Patch",
"internalLabel": "No version: Internal"
{
"gsv": {
"majorLabel": "Version: Major",
"minorLabel": "Version: Minor",
"patchLabel": "Version: Patch",
"internalLabel": "No version: Internal"
}
}

@@ -180,6 +184,4 @@ ```

"scripts": {
...
"prerelease": "npm run build",
"release": "github-semantic-version --bump --changelog --push --publish",
...
"release": "github-semantic-version --bump --changelog --push --publish"
}

@@ -196,9 +198,6 @@ }

{
...
"gsv": {
"startVersion": "2.5.0",
"majorLabel": "Version: Major",
...
},
...
"majorLabel": "Version: Major"
}
}

@@ -217,10 +216,7 @@ ```

{
...
"gsv": {
"github": {
"host": "github.my-GHE-enabled-company.com"
},
...
},
...
}
}
}

@@ -235,13 +231,25 @@ ```

{
...
"gsv": {
"abortOnMissingLabel": true,
...
},
...
"abortOnMissingLabel": true
}
}
```
#### addReleasedLabelOnSuccess
Define the `addReleasedLabelOnSuccess` and `releasedLabel` options to add a label to a PR once it has been successfully published.
```json
{
"gsv": {
"releasedLabel": "Released",
"addReleasedLabelOnSuccess": true
}
}
```
> The `releasedLabel` defaults to "Released".
### License
> MIT License 2016 © Eric Clemmons