Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 668026e

Browse files
committed
chore: bump version to 3.9.1
1 parent 5f42112 commit 668026e

File tree

7 files changed

+16
-16
lines changed

7 files changed

+16
-16
lines changed

‎README.md‎

Lines changed: 1 addition & 1 deletion
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

33
![Lines](https://img.shields.io/badge/Coverage-50.08%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.0/docs)
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)
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‎

Lines changed: 1 addition & 1 deletion
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.0
23+
appVersion: 3.9.1

‎ci/helm-chart/README.md‎

Lines changed: 2 additions & 2 deletions
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.0](https://img.shields.io/badge/AppVersion-3.9.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.9.1](https://img.shields.io/badge/AppVersion-3.9.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.9.0"` | |
75+
| image.tag | string | `"3.9.1"` | |
7676
| imagePullSecrets | list | `[]` | |
7777
| ingress.enabled | bool | `false` | |
7878
| nameOverride | string | `""` | |

‎ci/helm-chart/values.yaml‎

Lines changed: 1 addition & 1 deletion
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.0'
9+
tag: '3.9.1'
1010
pullPolicy: Always
1111

1212
imagePullSecrets: []

‎docs/install.md‎

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -88,17 +88,17 @@ commands presented in the rest of this document.
8888
## Debian, Ubuntu
8989

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

9797
## Fedora, CentOS, RHEL, SUSE
9898

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

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

‎install.sh‎

Lines changed: 3 additions & 3 deletions
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.0/docs/install.md
5+
# See https://github.com/cdr/code-server/blob/v3.9.1/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.0/docs/install.md
70+
More installation docs are at https://github.com/cdr/code-server/blob/v3.9.1/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.0/docs/install.md#yarn-npm"
422+
echoerr "See the docs https://github.com/cdr/code-server/blob/v3.9.1/docs/install.md#yarn-npm"
423423
exit 1
424424
}
425425

‎package.json‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "code-server",
33
"license": "MIT",
4-
"version": "3.9.0",
4+
"version": "3.9.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)

AltStyle によって変換されたページ (->オリジナル) /