Skip to content

Commit 3612076

Browse files
authored
Merge pull request #2386 from cdr/v3.7.4
v3.7.4
2 parents 7e1bb8f + 11f5378 commit 3612076

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

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.2
18+
version: 1.0.3
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.3
23+
appVersion: 3.7.4

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

1212
imagePullSecrets: []

doc/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.7.3/code-server_3.7.3_amd64.deb
91-
sudo dpkg -i code-server_3.7.3_amd64.deb
90+
curl -fOL https://github.com/cdr/code-server/releases/download/v3.7.4/code-server_3.7.4_amd64.deb
91+
sudo dpkg -i code-server_3.7.4_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.7.3/code-server-3.7.3-amd64.rpm
100-
sudo rpm -i code-server-3.7.3-amd64.rpm
99+
curl -fOL https://github.com/cdr/code-server/releases/download/v3.7.4/code-server-3.7.4-amd64.rpm
100+
sudo rpm -i code-server-3.7.4-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.7.3/code-server-3.7.3-linux-amd64.tar.gz \
169+
curl -fL https://github.com/cdr/code-server/releases/download/v3.7.4/code-server-3.7.4-linux-amd64.tar.gz \
170170
| tar -C ~/.local/lib -xz
171-
mv ~/.local/lib/code-server-3.7.3-linux-amd64 ~/.local/lib/code-server-3.7.3
172-
ln -s ~/.local/lib/code-server-3.7.3/bin/code-server ~/.local/bin/code-server
171+
mv ~/.local/lib/code-server-3.7.4-linux-amd64 ~/.local/lib/code-server-3.7.4
172+
ln -s ~/.local/lib/code-server-3.7.4/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.7.3",
4+
"version": "3.7.4",
55
"description": "Run VS Code on a remote server.",
66
"homepage": "https://github.com/cdr/code-server",
77
"bugs": {

0 commit comments

Comments
 (0)