Skip to content

Commit 7b28284

Browse files
authored
Merge pull request #2721 from cdr/v3.9.0
release: v3.9.0
2 parents 3fc556d + fc6d123 commit 7b28284

File tree

9 files changed

+27
-18
lines changed

9 files changed

+27
-18
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# code-server · [!["GitHub Discussions"](https://img.shields.io/badge/%20GitHub-%20Discussions-gray.svg?longCache=true&logo=github&colorB=purple)](https://github.com/cdr/code-server/discussions) [!["Join us on Slack"](https://img.shields.io/badge/join-us%20on%20slack-gray.svg?longCache=true&logo=slack&colorB=brightgreen)](https://cdr.co/join-community) [![Twitter Follow](https://img.shields.io/twitter/follow/CoderHQ?label=%40CoderHQ&style=social)](https://twitter.com/coderhq)
22

3-
![Lines](https://img.shields.io/badge/Coverage-40.7%25-green.svg)
3+
![Lines](https://img.shields.io/badge/Coverage-50.08%25-green.svg)
44

55
Run [VS Code](https://github.com/Microsoft/vscode) on any machine anywhere and access it in the browser.
66

ci/README.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ Make sure you have `$GITHUB_TOKEN` set and [hub](https://github.com/github/hub)
2828
3. Run `yarn release:github-draft` to create a GitHub draft release from the template with
2929
the updated version.
3030
1. Summarize the major changes in the release notes and link to the relevant issues.
31+
2. Change the @ to target the version branch. Example: `v3.9.0 @ Target: v3.9.0`
3132
4. Wait for the artifacts in step 2 to build.
3233
5. Run `yarn release:github-assets` to download the `release-packages` artifact.
3334
- It will upload them to the draft release.
@@ -49,8 +50,9 @@ Make sure you have `$GITHUB_TOKEN` set and [hub](https://github.com/github/hub)
4950

5051
Currently, we run a command to manually generate the code coverage shield. Follow these steps:
5152

52-
1. Run `yarn badges`
53-
2. Go into the README and change the color from `red` to `green` in this line:
53+
1. Run `yarn test` and make sure all the tests are passing
54+
2. Run `yarn badges`
55+
3. Go into the README and change the color from `red` to `green` in this line:
5456

5557
```
5658
![Lines](https://img.shields.io/badge/Coverage-46.71%25-red.svg)

ci/build/release-github-draft.sh

+7
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,13 @@ installations.
2626
## Bug Fixes
2727
- ⭐ Summarize bug fixes here with references to issues
2828
29+
## Documentation
30+
- ⭐ Summarize doc changes here with references to issues
31+
32+
## Development
33+
- ⭐ Summarize development/testing changes here with references to issues
34+
35+
2936
Cheers! 🍻
3037
EOF
3138
}

ci/helm-chart/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ version: 1.0.3
2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to
2222
# follow Semantic Versioning. They should reflect the version the application is using.
23-
appVersion: 3.8.1
23+
appVersion: 3.9.0

ci/helm-chart/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# code-server
22

3-
![Version: 1.0.0](https://img.shields.io/badge/Version-1.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 3.8.1](https://img.shields.io/badge/AppVersion-3.8.1-informational?style=flat-square)
3+
![Version: 1.0.0](https://img.shields.io/badge/Version-1.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 3.9.0](https://img.shields.io/badge/AppVersion-3.9.0-informational?style=flat-square)
44

55
[code-server](https://github.com/cdr/code-server) code-server is VS Code running
66
on a remote server, accessible through the browser.
@@ -72,7 +72,7 @@ and their default values.
7272
| hostnameOverride | string | `""` | |
7373
| image.pullPolicy | string | `"Always"` | |
7474
| image.repository | string | `"codercom/code-server"` | |
75-
| image.tag | string | `"3.8.1"` | |
75+
| image.tag | string | `"3.9.0"` | |
7676
| imagePullSecrets | list | `[]` | |
7777
| ingress.enabled | bool | `false` | |
7878
| nameOverride | string | `""` | |

ci/helm-chart/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ replicaCount: 1
66

77
image:
88
repository: codercom/code-server
9-
tag: '3.8.1'
9+
tag: '3.9.0'
1010
pullPolicy: Always
1111

1212
imagePullSecrets: []

docs/install.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -87,17 +87,17 @@ commands presented in the rest of this document.
8787
## Debian, Ubuntu
8888

8989
```bash
90-
curl -fOL https://github.com/cdr/code-server/releases/download/v3.8.1/code-server_3.8.1_amd64.deb
91-
sudo dpkg -i code-server_3.8.1_amd64.deb
90+
curl -fOL https://github.com/cdr/code-server/releases/download/v3.9.0/code-server_3.9.0_amd64.deb
91+
sudo dpkg -i code-server_3.9.0_amd64.deb
9292
sudo systemctl enable --now code-server@$USER
9393
# Now visit http://127.0.0.1:8080. Your password is in ~/.config/code-server/config.yaml
9494
```
9595

9696
## Fedora, CentOS, RHEL, SUSE
9797

9898
```bash
99-
curl -fOL https://github.com/cdr/code-server/releases/download/v3.8.1/code-server-3.8.1-amd64.rpm
100-
sudo rpm -i code-server-3.8.1-amd64.rpm
99+
curl -fOL https://github.com/cdr/code-server/releases/download/v3.9.0/code-server-3.9.0-amd64.rpm
100+
sudo rpm -i code-server-3.9.0-amd64.rpm
101101
sudo systemctl enable --now code-server@$USER
102102
# Now visit http://127.0.0.1:8080. Your password is in ~/.config/code-server/config.yaml
103103
```
@@ -167,10 +167,10 @@ Here is an example script for installing and using a standalone `code-server` re
167167

168168
```bash
169169
mkdir -p ~/.local/lib ~/.local/bin
170-
curl -fL https://github.com/cdr/code-server/releases/download/v3.8.1/code-server-3.8.1-linux-amd64.tar.gz \
170+
curl -fL https://github.com/cdr/code-server/releases/download/v3.9.0/code-server-3.9.0-linux-amd64.tar.gz \
171171
| tar -C ~/.local/lib -xz
172-
mv ~/.local/lib/code-server-3.8.1-linux-amd64 ~/.local/lib/code-server-3.8.1
173-
ln -s ~/.local/lib/code-server-3.8.1/bin/code-server ~/.local/bin/code-server
172+
mv ~/.local/lib/code-server-3.9.0-linux-amd64 ~/.local/lib/code-server-3.9.0
173+
ln -s ~/.local/lib/code-server-3.9.0/bin/code-server ~/.local/bin/code-server
174174
PATH="~/.local/bin:$PATH"
175175
code-server
176176
# Now visit http://127.0.0.1:8080. Your password is in ~/.config/code-server/config.yaml

install.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
set -eu
33

44
# code-server's automatic install script.
5-
# See https://github.com/cdr/code-server/blob/v3.8.1/docs/install.md
5+
# See https://github.com/cdr/code-server/blob/v3.9.0/docs/install.md
66

77
usage() {
88
arg0="$0"
@@ -67,7 +67,7 @@ Usage:
6767
6868
It will cache all downloaded assets into ~/.cache/code-server
6969
70-
More installation docs are at https://github.com/cdr/code-server/blob/v3.8.1/docs/install.md
70+
More installation docs are at https://github.com/cdr/code-server/blob/v3.9.0/docs/install.md
7171
EOF
7272
}
7373

@@ -419,7 +419,7 @@ install_npm() {
419419
echoh
420420
echoerr "Please install npm or yarn to install code-server!"
421421
echoerr "You will need at least node v12 and a few C dependencies."
422-
echoerr "See the docs https://github.com/cdr/code-server/blob/v3.8.1/docs/install.md#yarn-npm"
422+
echoerr "See the docs https://github.com/cdr/code-server/blob/v3.9.0/docs/install.md#yarn-npm"
423423
exit 1
424424
}
425425

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "code-server",
33
"license": "MIT",
4-
"version": "3.8.1",
4+
"version": "3.9.0",
55
"description": "Run VS Code on a remote server.",
66
"homepage": "https://github.com/cdr/code-server",
77
"bugs": {

0 commit comments

Comments
 (0)