Skip to content

Commit 319795c

Browse files
authored
Merge pull request #2953 from cdr/v3.9.2
release: 3.9.2
2 parents 004c608 + f688e58 commit 319795c

File tree

7 files changed

+17
-17
lines changed

7 files changed

+17
-17
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
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-51.67%25-green.svg)
4-
[![See latest docs](https://img.shields.io/static/v1?label=Docs&message=see%20latest%20&color=blue)](https://github.com/cdr/code-server/tree/v3.9.1/docs)
3+
![Lines](https://img.shields.io/badge/Coverage-51.55%25-red.svg)
4+
[![See latest docs](https://img.shields.io/static/v1?label=Docs&message=see%20latest%20&color=blue)](https://github.com/cdr/code-server/tree/v3.9.2/docs)
55

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

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.9.1
23+
appVersion: 3.9.2

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.9.1](https://img.shields.io/badge/AppVersion-3.9.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.2](https://img.shields.io/badge/AppVersion-3.9.2-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.9.1"` | |
75+
| image.tag | string | `"3.9.2"` | |
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.9.1'
9+
tag: '3.9.2'
1010
pullPolicy: Always
1111

1212
imagePullSecrets: []

docs/install.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -89,17 +89,17 @@ commands presented in the rest of this document.
8989
## Debian, Ubuntu
9090

9191
```bash
92-
curl -fOL https://github.com/cdr/code-server/releases/download/v3.9.1/code-server_3.9.1_amd64.deb
93-
sudo dpkg -i code-server_3.9.1_amd64.deb
92+
curl -fOL https://github.com/cdr/code-server/releases/download/v3.9.2/code-server_3.9.2_amd64.deb
93+
sudo dpkg -i code-server_3.9.2_amd64.deb
9494
sudo systemctl enable --now code-server@$USER
9595
# Now visit http://127.0.0.1:8080. Your password is in ~/.config/code-server/config.yaml
9696
```
9797

9898
## Fedora, CentOS, RHEL, SUSE
9999

100100
```bash
101-
curl -fOL https://github.com/cdr/code-server/releases/download/v3.9.1/code-server-3.9.1-amd64.rpm
102-
sudo rpm -i code-server-3.9.1-amd64.rpm
101+
curl -fOL https://github.com/cdr/code-server/releases/download/v3.9.2/code-server-3.9.2-amd64.rpm
102+
sudo rpm -i code-server-3.9.2-amd64.rpm
103103
sudo systemctl enable --now code-server@$USER
104104
# Now visit http://127.0.0.1:8080. Your password is in ~/.config/code-server/config.yaml
105105
```
@@ -181,10 +181,10 @@ Here is an example script for installing and using a standalone `code-server` re
181181

182182
```bash
183183
mkdir -p ~/.local/lib ~/.local/bin
184-
curl -fL https://github.com/cdr/code-server/releases/download/v3.9.1/code-server-3.9.1-linux-amd64.tar.gz \
184+
curl -fL https://github.com/cdr/code-server/releases/download/v3.9.2/code-server-3.9.2-linux-amd64.tar.gz \
185185
| tar -C ~/.local/lib -xz
186-
mv ~/.local/lib/code-server-3.9.1-linux-amd64 ~/.local/lib/code-server-3.9.1
187-
ln -s ~/.local/lib/code-server-3.9.1/bin/code-server ~/.local/bin/code-server
186+
mv ~/.local/lib/code-server-3.9.2-linux-amd64 ~/.local/lib/code-server-3.9.2
187+
ln -s ~/.local/lib/code-server-3.9.2/bin/code-server ~/.local/bin/code-server
188188
PATH="~/.local/bin:$PATH"
189189
code-server
190190
# 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.9.1/docs/install.md
5+
# See https://github.com/cdr/code-server/blob/v3.9.2/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.9.1/docs/install.md
70+
More installation docs are at https://github.com/cdr/code-server/blob/v3.9.2/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.9.1/docs/install.md#yarn-npm"
422+
echoerr "See the docs https://github.com/cdr/code-server/blob/v3.9.2/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.9.1",
4+
"version": "3.9.2",
55
"description": "Run VS Code on a remote server.",
66
"homepage": "https://github.com/cdr/code-server",
77
"bugs": {

0 commit comments

Comments
 (0)