Skip to content

Commit 2e83808

Browse files
committed
v3.4.0
1 parent fbd8564 commit 2e83808

File tree

3 files changed

+10
-11
lines changed

3 files changed

+10
-11
lines changed

ci/README.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,7 @@ Make sure you have `$GITHUB_TOKEN` set and [hub](https://github.com/github/hub)
1616

1717
1. Update the version of code-server and make a PR.
1818
1. Update in `package.json`
19-
2. [README.md](../README.md) and [guide.md](../doc/guide.md) install examples
20-
3. [install.sh](../install.sh)
19+
3. Update in [install.sh](../install.sh)
2120
2. GitHub actions will generate the `npm-package`, `release-packages` and `release-images` artifacts.
2221
3. Run `yarn release:github-draft` to create a GitHub draft release from the template with
2322
the updated version.
@@ -92,7 +91,7 @@ You can disable minification by setting `MINIFY=`.
9291
- [./ci/build/nfpm.yaml](./build/nfpm.yaml)
9392
- Used to configure [nfpm](https://github.com/goreleaser/nfpm) to generate `.deb` and `.rpm`.
9493
- [./ci/build/code-server-nfpm.sh](./build/code-server-nfpm.sh)
95-
- Entrypoint script for code-server for `.deb` and .rpm`.
94+
- Entrypoint script for code-server for `.deb` and `.rpm`.
9695
- [./ci/build/code-server.service](./build/code-server.service)
9796
- systemd user service packaged into the `.deb` and `.rpm`.
9897
- [./ci/build/release-github-draft.sh](./build/release-github-draft.sh) (`yarn release:github-draft`)

doc/install.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -77,17 +77,17 @@ commands presented in the rest of this document.
7777
## Debian, Ubuntu
7878

7979
```bash
80-
curl -fOL https://github.com/cdr/code-server/releases/download/v3.3.1/code-server_3.3.1_amd64.deb
81-
sudo dpkg -i code-server_3.3.1_amd64.deb
80+
curl -fOL https://github.com/cdr/code-server/releases/download/v3.4.0/code-server_3.4.0_amd64.deb
81+
sudo dpkg -i code-server_3.4.0_amd64.deb
8282
systemctl --user enable --now code-server
8383
# Now visit http://127.0.0.1:8080. Your password is in ~/.config/code-server/config.yaml
8484
```
8585

8686
## Fedora, CentOS, RHEL, SUSE
8787

8888
```bash
89-
curl -fOL https://github.com/cdr/code-server/releases/download/v3.3.1/code-server-3.3.1-amd64.rpm
90-
sudo rpm -i code-server-3.3.1-amd64.rpm
89+
curl -fOL https://github.com/cdr/code-server/releases/download/v3.4.0/code-server-3.4.0-amd64.rpm
90+
sudo rpm -i code-server-3.4.0-amd64.rpm
9191
systemctl --user enable --now code-server
9292
# Now visit http://127.0.0.1:8080. Your password is in ~/.config/code-server/config.yaml
9393
```
@@ -156,10 +156,10 @@ Here is an example script for installing and using a standalone `code-server` re
156156

157157
```bash
158158
mkdir -p ~/.local/lib ~/.local/bin
159-
curl -fL https://github.com/cdr/code-server/releases/download/v3.3.1/code-server-3.3.1-linux-amd64.tar.gz \
159+
curl -fL https://github.com/cdr/code-server/releases/download/v3.4.0/code-server-3.4.0-linux-amd64.tar.gz \
160160
| tar -C ~/.local/lib -xz
161-
mv ~/.local/lib/code-server-3.3.1-linux-amd64 ~/.local/lib/code-server-3.3.1
162-
ln -s ~/.local/lib/code-server-3.3.1/bin/code-server ~/.local/bin/code-server
161+
mv ~/.local/lib/code-server-3.4.0-linux-amd64 ~/.local/lib/code-server-3.4.0
162+
ln -s ~/.local/lib/code-server-3.4.0/bin/code-server ~/.local/bin/code-server
163163
PATH="~/.local/bin:$PATH"
164164
code-server
165165
# 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.3.1",
4+
"version": "3.4.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)