Skip to content

Commit

Permalink
Bumped version to 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dotiful committed Jun 14, 2019
1 parent 71439c8 commit 087c610
Show file tree
Hide file tree
Showing 4 changed files with 48 additions and 13 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
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
8 changes: 1 addition & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,13 +69,7 @@ PR to add more file extensions, tweaks, etc.

</details>

## Release Notes

Users appreciate release notes as you update your extension.

### 0.1.0

Initial release
## [CHANGELOG](/CHANGELOG.md)

## License

Expand Down
41 changes: 36 additions & 5 deletions bump.json
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
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "dotfiles-syntax-highlighting",
"displayName": "Dotfiles Syntax Highlighting",
"version": "0.0.1",
"version": "0.1.0",
"publisher": "dotiful",
"description": "Provides syntax highlighting for dotfiles",
"categories": [ "Programming Languages" ],
Expand Down

0 comments on commit 087c610

Please sign in to comment.