Skip to content

Commit 014d746

Browse files
author
Akash Satheesan
authored
release: 3.10.0 (#3338)
Also fixes release scripts.
2 parents 30daa33 + a5e8337 commit 014d746

File tree

9 files changed

+17
-19
lines changed

9 files changed

+17
-19
lines changed

README.md

+1-1
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
[![codecov](https://codecov.io/gh/cdr/code-server/branch/main/graph/badge.svg?token=5iM9farjnC)](https://codecov.io/gh/cdr/code-server)
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.3/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.10.0/docs)
55

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

ci/build/release-github-assets.sh

+1-3
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,7 @@ main() {
1212

1313
download_artifact release-packages ./release-packages
1414
local assets=(./release-packages/code-server*"$VERSION"*{.tar.gz,.deb,.rpm})
15-
for i in "${!assets[@]}"; do
16-
assets[$i]="--attach=${assets[$i]}"
17-
done
15+
1816
EDITOR=true gh release upload "v$VERSION" "${assets[@]}"
1917
}
2018

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.3
23+
appVersion: 3.10.0

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

1212
imagePullSecrets: []

ci/lib.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,9 @@ arch() {
5454
# https://developer.github.com/v3/actions/workflow-runs/#list-workflow-runs
5555
get_artifacts_url() {
5656
local artifacts_url
57-
local workflow_runs_url="repos/:owner/:repo/actions/workflows/ci.yaml/runs?status=success&event=pull_request"
57+
local workflow_runs_url="repos/:owner/:repo/actions/workflows/ci.yaml/runs?event=pull_request"
5858
# For releases, we look for run based on the branch name v$code_server_version
59-
# example: v3.9.3
59+
# example: v3.10.0
6060
local version_branch="v$VERSION"
6161
artifacts_url=$(gh api "$workflow_runs_url" | jq -r ".workflow_runs[] | select(.head_branch == \"$version_branch\") | .artifacts_url" | head -n 1)
6262
if [[ -z "$artifacts_url" ]]; then

docs/install.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,8 @@ NOTE: The standalone arm64 .deb does not support Ubuntu <16.04.
9292
Please upgrade or [build with yarn](#yarn-npm).
9393

9494
```bash
95-
curl -fOL https://github.com/cdr/code-server/releases/download/v3.9.3/code-server_3.9.3_amd64.deb
96-
sudo dpkg -i code-server_3.9.3_amd64.deb
95+
curl -fOL https://github.com/cdr/code-server/releases/download/v3.10.0/code-server_3.10.0_amd64.deb
96+
sudo dpkg -i code-server_3.10.0_amd64.deb
9797
sudo systemctl enable --now code-server@$USER
9898
# Now visit http://127.0.0.1:8080. Your password is in ~/.config/code-server/config.yaml
9999
```
@@ -104,8 +104,8 @@ NOTE: The standalone arm64 .rpm does not support CentOS 7.
104104
Please upgrade or [build with yarn](#yarn-npm).
105105

106106
```bash
107-
curl -fOL https://github.com/cdr/code-server/releases/download/v3.9.3/code-server-3.9.3-amd64.rpm
108-
sudo rpm -i code-server-3.9.3-amd64.rpm
107+
curl -fOL https://github.com/cdr/code-server/releases/download/v3.10.0/code-server-3.10.0-amd64.rpm
108+
sudo rpm -i code-server-3.10.0-amd64.rpm
109109
sudo systemctl enable --now code-server@$USER
110110
# Now visit http://127.0.0.1:8080. Your password is in ~/.config/code-server/config.yaml
111111
```
@@ -179,10 +179,10 @@ Here is an example script for installing and using a standalone `code-server` re
179179

180180
```bash
181181
mkdir -p ~/.local/lib ~/.local/bin
182-
curl -fL https://github.com/cdr/code-server/releases/download/v3.9.3/code-server-3.9.3-linux-amd64.tar.gz \
182+
curl -fL https://github.com/cdr/code-server/releases/download/v3.10.0/code-server-3.10.0-linux-amd64.tar.gz \
183183
| tar -C ~/.local/lib -xz
184-
mv ~/.local/lib/code-server-3.9.3-linux-amd64 ~/.local/lib/code-server-3.9.3
185-
ln -s ~/.local/lib/code-server-3.9.3/bin/code-server ~/.local/bin/code-server
184+
mv ~/.local/lib/code-server-3.10.0-linux-amd64 ~/.local/lib/code-server-3.10.0
185+
ln -s ~/.local/lib/code-server-3.10.0/bin/code-server ~/.local/bin/code-server
186186
PATH="~/.local/bin:$PATH"
187187
code-server
188188
# Now visit http://127.0.0.1:8080. Your password is in ~/.config/code-server/config.yaml

install.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -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.3/docs/install.md#yarn-npm"
422+
echoerr "See the docs https://github.com/cdr/code-server/blob/v3.10.0/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.3",
4+
"version": "3.10.0",
55
"description": "Run VS Code on a remote server.",
66
"homepage": "https://github.com/cdr/code-server",
77
"bugs": {

0 commit comments

Comments
 (0)