From 5f94d5a6871b0cf86f8927158f2fa1750d0f5ca3 Mon Sep 17 00:00:00 2001 From: Anmol Sethi Date: Mon, 18 May 2020 18:11:52 -0400 Subject: [PATCH] Release v3.3.1 This release fixes bugs introduced with the release of v3.3.0 - We've reverted to VS Code 1.45.1 due to bugs in 1.46 #1667 - Accessing code-server from a web browser on Windows has been fixed #1642 - Search in project has been fixed #1665 - The glibc requirement on static releases has been lowered to v2.19 #1656 --- README.md | 14 +++++++------- doc/guide.md | 4 ++-- package.json | 2 +- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 553faa949..d70be37a7 100644 --- a/README.md +++ b/README.md @@ -18,8 +18,8 @@ For a full setup and walkthrough, please see [./doc/guide.md](./doc/guide.md). ### Debian, Ubuntu ```bash -curl -sSOL https://github.com/cdr/code-server/releases/download/v3.3.0/code-server_3.3.0_amd64.deb -sudo dpkg -i code-server_3.3.0_amd64.deb +curl -sSOL https://github.com/cdr/code-server/releases/download/v3.3.1/code-server_3.3.1_amd64.deb +sudo dpkg -i code-server_3.3.1_amd64.deb systemctl --user enable --now code-server # Now visit http://127.0.0.1:8080. Your password is in ~/.config/code-server/config.yaml ``` @@ -27,8 +27,8 @@ systemctl --user enable --now code-server ### Fedora, Red Hat, SUSE ```bash -curl -sSOL https://github.com/cdr/code-server/releases/download/v3.3.0/code-server-3.3.0-amd64.rpm -sudo yum install -y code-server-3.3.0-amd64.rpm +curl -sSOL https://github.com/cdr/code-server/releases/download/v3.3.1/code-server-3.3.1-amd64.rpm +sudo yum install -y code-server-3.3.1-amd64.rpm systemctl --user enable --now code-server # Now visit http://127.0.0.1:8080. Your password is in ~/.config/code-server/config.yaml ``` @@ -84,10 +84,10 @@ Add the code-server `bin` directory to your `$PATH` to easily execute `code-serv Here is an example script for installing and using a static `code-server` release on Linux: ```bash -curl -sSL https://github.com/cdr/code-server/releases/download/v3.3.0/code-server-3.3.0-linux-amd64.tar.gz \ +curl -sSL https://github.com/cdr/code-server/releases/download/v3.3.1/code-server-3.3.1-linux-amd64.tar.gz \ | sudo tar -C /usr/local -xz -sudo mv /usr/local/code-server-3.3.0-linux-amd64 /usr/local/code-server-3.3.0 -PATH="/usr/local/code-server-3.3.0/bin:$PATH" +sudo mv /usr/local/code-server-3.3.1-linux-amd64 /usr/local/code-server-3.3.1 +PATH="/usr/local/code-server-3.3.1/bin:$PATH" code-server # Now visit http://127.0.0.1:8080. Your password is in ~/.config/code-server/config.yaml ``` diff --git a/doc/guide.md b/doc/guide.md index 099e0e535..fa6d7b9fe 100644 --- a/doc/guide.md +++ b/doc/guide.md @@ -82,8 +82,8 @@ SSH into your instance and run the appropriate commands documented in [README.md Assuming Debian: ```bash -curl -sSOL https://github.com/cdr/code-server/releases/download/v3.3.0/code-server_3.3.0_amd64.deb -sudo dpkg -i code-server_3.3.0_amd64.deb +curl -sSOL https://github.com/cdr/code-server/releases/download/v3.3.1/code-server_3.3.1_amd64.deb +sudo dpkg -i code-server_3.3.1_amd64.deb systemctl --user enable --now code-server # Now code-server is running at http://127.0.0.1:8080 # Your password is in ~/.config/code-server/config.yaml diff --git a/package.json b/package.json index fbb114c93..de9256d8a 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "code-server", "license": "MIT", - "version": "3.3.0", + "version": "3.3.1", "description": "Run VS Code on a remote server.", "homepage": "https://github.com/cdr/code-server", "bugs": {