2020-05-12 04:08:22 +07:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
|
|
|
|
# Creates a draft release with the template for the version in package.json
|
|
|
|
|
|
|
|
main() {
|
|
|
|
cd "$(dirname "$0")/../.."
|
|
|
|
source ./ci/lib.sh
|
|
|
|
|
2021-04-20 03:51:33 +07:00
|
|
|
gh release create "v$VERSION" \
|
|
|
|
--notes-file - \
|
|
|
|
--target "$(git rev-parse HEAD)" \
|
2021-06-28 23:36:55 +07:00
|
|
|
--draft << EOF
|
2020-05-16 21:55:46 +07:00
|
|
|
v$VERSION
|
2020-05-12 04:08:22 +07:00
|
|
|
|
|
|
|
VS Code v$(vscode_version)
|
|
|
|
|
2020-11-24 09:07:02 +07:00
|
|
|
Upgrading is as easy as installing the new version over the old one. code-server
|
|
|
|
maintains all user data in \`~/.local/share/code-server\` so that it is preserved in between
|
|
|
|
installations.
|
|
|
|
|
2020-11-20 06:03:12 +07:00
|
|
|
## New Features
|
2021-02-03 23:32:35 +07:00
|
|
|
|
2021-03-26 05:06:56 +07:00
|
|
|
⭐ Summarize new features here with references to issues
|
2020-11-17 04:56:53 +07:00
|
|
|
|
2021-03-26 05:06:56 +07:00
|
|
|
- item
|
2021-03-06 00:34:16 +07:00
|
|
|
|
2020-11-17 04:56:53 +07:00
|
|
|
## Bug Fixes
|
2021-03-26 05:06:56 +07:00
|
|
|
|
|
|
|
⭐ Summarize bug fixes here with references to issues
|
|
|
|
|
|
|
|
- item
|
2020-11-17 04:56:53 +07:00
|
|
|
|
2021-02-13 04:13:07 +07:00
|
|
|
## Documentation
|
2021-03-26 05:06:56 +07:00
|
|
|
|
|
|
|
⭐ Summarize doc changes here with references to issues
|
|
|
|
|
|
|
|
- item
|
2021-02-13 04:13:07 +07:00
|
|
|
|
|
|
|
## Development
|
|
|
|
|
2021-03-26 05:06:56 +07:00
|
|
|
⭐ Summarize development/testing changes here with references to issues
|
|
|
|
|
|
|
|
- item
|
2021-02-13 04:13:07 +07:00
|
|
|
|
2020-11-17 04:56:53 +07:00
|
|
|
Cheers! 🍻
|
2020-05-12 04:08:22 +07:00
|
|
|
EOF
|
|
|
|
}
|
|
|
|
|
|
|
|
main "$@"
|