Skip to content

Commit a0db672

Browse files
committed
v3.7.2
1 parent 23ead21 commit a0db672

File tree

6 files changed

+14
-13
lines changed

6 files changed

+14
-13
lines changed

ci/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ Make sure you have `$GITHUB_TOKEN` set and [hub](https://github.com/github/hub)
1818
1. Update in `package.json`
1919
2. Update in [./doc/install.md](../doc/install.md)
2020
3. Update in [./ci/helm-chart/README.md](../ci/helm-chart/README.md)
21+
- Remember to update the chart version as well on top of appVersion in `Chart.yaml`.
2122
2. GitHub actions will generate the `npm-package`, `release-packages` and `release-images` artifacts.
2223
1. You do not have to wait for these.
2324
3. Run `yarn release:github-draft` to create a GitHub draft release from the template with

ci/helm-chart/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 1.0.0
18+
version: 1.0.1
1919

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.1
23+
appVersion: 3.7.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.7.1](https://img.shields.io/badge/AppVersion-3.7.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.7.2](https://img.shields.io/badge/AppVersion-3.7.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.7.1"` | |
75+
| image.tag | string | `"3.7.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.7.1'
9+
tag: '3.7.2'
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.1/code-server_3.7.1_amd64.deb
84-
sudo dpkg -i code-server_3.7.1_amd64.deb
83+
curl -fOL https://github.com/cdr/code-server/releases/download/v3.7.2/code-server_3.7.2_amd64.deb
84+
sudo dpkg -i code-server_3.7.2_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.1/code-server-3.7.1-amd64.rpm
93-
sudo rpm -i code-server-3.7.1-amd64.rpm
92+
curl -fOL https://github.com/cdr/code-server/releases/download/v3.7.2/code-server-3.7.2-amd64.rpm
93+
sudo rpm -i code-server-3.7.2-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.1/code-server-3.7.1-linux-amd64.tar.gz \
162+
curl -fL https://github.com/cdr/code-server/releases/download/v3.7.2/code-server-3.7.2-linux-amd64.tar.gz \
163163
| tar -C ~/.local/lib -xz
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
164+
mv ~/.local/lib/code-server-3.7.2-linux-amd64 ~/.local/lib/code-server-3.7.2
165+
ln -s ~/.local/lib/code-server-3.7.2/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.1",
4+
"version": "3.7.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)