-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
48 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
### Version 0.1.0 | ||
- rename language name | ||
- removed extensions existing in default grammar | ||
- added zsh autocomplete scripts | ||
- added gemrc extension | ||
- added zshrc.local extension | ||
- update description | ||
|
||
### version 0.0.1 | ||
- inititial |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,45 @@ | ||
{ | ||
"tag": { | ||
"version": { | ||
"enabled": true, | ||
"name": "[version]" | ||
"initial": "0.0.1", | ||
"increments": ["major", "minor", "patch", "premajor", "preminor", "prepatch", "prerelease", "custom"] | ||
}, | ||
"changelog": { | ||
"create": true, | ||
"open": true, | ||
"version": "### v[version]", | ||
"commit": "- [message]", | ||
"separator": "\n" | ||
}, | ||
"commit": { | ||
"message": "bumped version to [version]" | ||
}, | ||
"tag": { | ||
"enabled": false, | ||
"name": "v[version]" | ||
}, | ||
"release": { | ||
"enabled": true, | ||
"github": { | ||
"enabled": true, | ||
"files": [ | ||
"out/**" | ||
] | ||
"open": true, | ||
"draft": true, | ||
"prerelease": false, | ||
"files": ["tag\/v+([^)]+)", "tag\/v[version]"], | ||
"owner": "dotiful", | ||
"repo": "vscode-dotfiles-syntax" | ||
} | ||
}, | ||
"scripts": { | ||
"prebump": "", // Script to execute before bumping the version | ||
"postbump": "", // Script to execute after bumping the version | ||
"prechangelog": "", // Script to execute before updating the changelog | ||
"postchangelog": "", // Script to execute after updating the changelog | ||
"precommit": "", // Script to execute before committing | ||
"postcommit": "", // Script to execute after committing | ||
"pretag": "", // Script to execute before tagging | ||
"posttag": "", // Script to execute after tagging | ||
"prerelease": "", // Script to execute before releasing | ||
"postrelease": "" // Script to execute after releasing | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters