Skip to content

Commit ec6b6c5

Browse files
authored
Merge pull request #2684 from cdr/v3.8.1
release: v3.8.1
2 parents cf30b53 + 41ad0c0 commit ec6b6c5

File tree

8 files changed

+15
-14
lines changed

8 files changed

+15
-14
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-46.71%25-green.svg)
3+
![Lines](https://img.shields.io/badge/Coverage-40.7%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

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ Make sure you have `$GITHUB_TOKEN` set and [hub](https://github.com/github/hub)
2121
- Remember to update the chart version as well on top of appVersion in `Chart.yaml`.
2222
- Run `rg -g '!yarn.lock' -g '!*.svg' '3\.7\.5'` to ensure all values have been
2323
changed. Replace the numbers as needed.
24+
- You can install `rg` or `ripgrep` on macOS [here](https://formulae.brew.sh/formula/ripgrep).
2425
4. Update the code coverage badge (see [here](#updating-code-coverage-in-readme) for instructions)
2526
2. GitHub actions will generate the `npm-package`, `release-packages` and `release-images` artifacts.
2627
1. You do not have to wait for these.

ci/build/release-github-draft.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ main() {
1010
hub release create \
1111
--file - \
1212
-t "$(git rev-parse HEAD)" \
13-
--draft "${assets[@]}" "v$VERSION" << EOF
13+
--draft "v$VERSION" << EOF
1414
v$VERSION
1515
1616
VS Code v$(vscode_version)

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.0
23+
appVersion: 3.8.1

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.0](https://img.shields.io/badge/AppVersion-3.8.0-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.8.1](https://img.shields.io/badge/AppVersion-3.8.1-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.0"` | |
75+
| image.tag | string | `"3.8.1"` | |
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.0'
9+
tag: '3.8.1'
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.0/code-server_3.8.0_amd64.deb
91-
sudo dpkg -i code-server_3.8.0_amd64.deb
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
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.0/code-server-3.8.0-amd64.rpm
100-
sudo rpm -i code-server-3.8.0-amd64.rpm
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
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
```
@@ -166,10 +166,10 @@ Here is an example script for installing and using a standalone `code-server` re
166166

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

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.0",
4+
"version": "3.8.1",
55
"description": "Run VS Code on a remote server.",
66
"homepage": "https://github.com/cdr/code-server",
77
"bugs": {

0 commit comments

Comments
 (0)