Skip to content

Commit 2bf91ff

Browse files
committed
v3.7.1
1 parent ccc519e commit 2bf91ff

File tree

6 files changed

+14
-13
lines changed

6 files changed

+14
-13
lines changed

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ We also have an in-depth [setup and configuration](./doc/guide.md) guide.
3535

3636
### Alpha Program 🐣
3737

38-
We're working on a cloud platform that makes deploying and managing code-server easier. Consider [updating to 3.7.0](https://github.com/cdr/code-server/releases/tag/v3.7.0) and running code-server with our experimental flag `--link` if you don't want to worry about
38+
We're working on a cloud platform that makes deploying and managing code-server easier.
39+
Consider updating to the latest version and running code-server with our experimental flag `--link` if you don't want to worry about
3940

4041
- TLS
4142
- Authentication

ci/helm-chart/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ version: 1.0.0
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.7.0
23+
appVersion: 3.7.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.7.0](https://img.shields.io/badge/AppVersion-3.7.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.7.1](https://img.shields.io/badge/AppVersion-3.7.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.7.0"` | |
75+
| image.tag | string | `"3.7.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.7.0'
9+
tag: '3.7.1'
1010
pullPolicy: Always
1111

1212
imagePullSecrets: []

doc/install.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -80,17 +80,17 @@ commands presented in the rest of this document.
8080
## Debian, Ubuntu
8181

8282
```bash
83-
curl -fOL https://github.com/cdr/code-server/releases/download/v3.7.0/code-server_3.7.0_amd64.deb
84-
sudo dpkg -i code-server_3.7.0_amd64.deb
83+
curl -fOL https://github.com/cdr/code-server/releases/download/v3.7.1/code-server_3.7.1_amd64.deb
84+
sudo dpkg -i code-server_3.7.1_amd64.deb
8585
sudo systemctl enable --now code-server@$USER
8686
# Now visit http://127.0.0.1:8080. Your password is in ~/.config/code-server/config.yaml
8787
```
8888

8989
## Fedora, CentOS, RHEL, SUSE
9090

9191
```bash
92-
curl -fOL https://github.com/cdr/code-server/releases/download/v3.7.0/code-server-3.7.0-amd64.rpm
93-
sudo rpm -i code-server-3.7.0-amd64.rpm
92+
curl -fOL https://github.com/cdr/code-server/releases/download/v3.7.1/code-server-3.7.1-amd64.rpm
93+
sudo rpm -i code-server-3.7.1-amd64.rpm
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
```
@@ -159,10 +159,10 @@ Here is an example script for installing and using a standalone `code-server` re
159159

160160
```bash
161161
mkdir -p ~/.local/lib ~/.local/bin
162-
curl -fL https://github.com/cdr/code-server/releases/download/v3.7.0/code-server-3.7.0-linux-amd64.tar.gz \
162+
curl -fL https://github.com/cdr/code-server/releases/download/v3.7.1/code-server-3.7.1-linux-amd64.tar.gz \
163163
| tar -C ~/.local/lib -xz
164-
mv ~/.local/lib/code-server-3.7.0-linux-amd64 ~/.local/lib/code-server-3.7.0
165-
ln -s ~/.local/lib/code-server-3.7.0/bin/code-server ~/.local/bin/code-server
164+
mv ~/.local/lib/code-server-3.7.1-linux-amd64 ~/.local/lib/code-server-3.7.1
165+
ln -s ~/.local/lib/code-server-3.7.1/bin/code-server ~/.local/bin/code-server
166166
PATH="~/.local/bin:$PATH"
167167
code-server
168168
# 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.7.0",
4+
"version": "3.7.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)