2020-05-11 23:08:22 +02: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
|
|
|
|
|
|
|
|
hub release create \
|
|
|
|
--file - \
|
2020-05-19 03:30:24 +02:00
|
|
|
-t "$(git rev-parse HEAD)" \
|
2021-02-05 22:26:34 +01:00
|
|
|
--draft "v$VERSION" << EOF
|
2020-05-16 16:55:46 +02:00
|
|
|
v$VERSION
|
2020-05-11 23:08:22 +02:00
|
|
|
|
|
|
|
VS Code v$(vscode_version)
|
|
|
|
|
2020-11-24 03:07:02 +01: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 00:03:12 +01:00
|
|
|
## New Features
|
2021-02-03 17:32:35 +01:00
|
|
|
|
2020-11-16 22:56:53 +01:00
|
|
|
- ⭐ Summarize new features here with references to issues
|
|
|
|
|
|
|
|
## Bug Fixes
|
|
|
|
- ⭐ Summarize bug fixes here with references to issues
|
|
|
|
|
2021-02-12 22:13:07 +01:00
|
|
|
## Documentation
|
|
|
|
- ⭐ Summarize doc changes here with references to issues
|
|
|
|
|
|
|
|
## Development
|
|
|
|
- ⭐ Summarize development/testing changes here with references to issues
|
|
|
|
|
|
|
|
|
2020-11-16 22:56:53 +01:00
|
|
|
Cheers! 🍻
|
2020-05-11 23:08:22 +02:00
|
|
|
EOF
|
|
|
|
}
|
|
|
|
|
|
|
|
main "$@"
|