diff --git a/CHANGELOG.md b/CHANGELOG.md index 9a353e7..4813f3a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## `2.2.1` (2023-10-22) +### Features +- Add shell type selector + ## `2.2.0` (2023-10-21) ### Features - Add Windows terminal support diff --git a/Cargo.lock b/Cargo.lock index 8db6555..3710d73 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2555,7 +2555,7 @@ dependencies = [ [[package]] name = "serverbee-deploy" -version = "2.2.0" +version = "2.2.1" dependencies = [ "anyhow", "auto-launch", @@ -2578,7 +2578,7 @@ dependencies = [ [[package]] name = "serverbee-web" -version = "2.2.0" +version = "2.2.1" dependencies = [ "actix", "actix-codec", diff --git a/README.md b/README.md index 2d545d6..271262c 100644 --- a/README.md +++ b/README.md @@ -45,6 +45,11 @@ Backend for iOS application named [ServerBee](https://apps.apple.com/us/app/serv # How to use ## Installation +### Quick install(Linux、macOS) +```bash +bash <(curl -s https://raw.githubusercontent.com/ZingerLittleBee/server_bee-backend/main/script/startup.sh) +``` + ### Docker > The installation tutorial is located in the documentation 👉 [Docker](https://docs.serverbee.app/en/usage/docker) diff --git a/README.zh-CN.md b/README.zh-CN.md index 8acc30c..ff52c64 100644 --- a/README.zh-CN.md +++ b/README.zh-CN.md @@ -45,6 +45,11 @@ iOS 应用 [ServerBee](https://apps.apple.com/us/app/serverbee/id6443553714) 的 # 如何使用 ## 安装 +### 一键安装(Linux、macOS) +```bash +bash <(curl -s https://raw.githubusercontent.com/ZingerLittleBee/server_bee-backend/main/script/startup.sh) +``` + ### Docker > 详细教程请访问文档链接 👉 [Docker](https://docs.serverbee.app/usage/docker) diff --git a/deploy/Cargo.toml b/deploy/Cargo.toml index 2836d7d..5a452d5 100644 --- a/deploy/Cargo.toml +++ b/deploy/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "serverbee-deploy" -version = "2.2.0" +version = "2.2.1" edition = "2021" [features] diff --git a/web/Cargo.toml b/web/Cargo.toml index 554dca5..ef0b5e0 100644 --- a/web/Cargo.toml +++ b/web/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "serverbee-web" -version = "2.2.0" +version = "2.2.1" edition = "2021" categories = ["web-programming::http-server", "visualization", "monitor", "terminal"] keywords = ["serverbee", "web-server", "visualization", "monitor"]