diff --git a/Cargo.toml b/Cargo.toml index eb9dc6d3b..cbbf6d211 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ninja" -version = "0.8.8" +version = "0.8.9" edition = "2021" description = "Reverse engineered ChatGPT proxy" license = "GPL-3.0" diff --git a/doc/readme.md b/doc/readme.md index 8b521974b..7bedcc2b9 100644 --- a/doc/readme.md +++ b/doc/readme.md @@ -22,8 +22,8 @@ If the project is helpful to you, please consider [donating support](https://git Making [Releases](https://github.com/gngpp/ninja/releases/latest) has a precompiled deb package, binaries, in Ubuntu, for example: ```shell -wget https://github.com/gngpp/ninja/releases/download/v0.8.8/ninja-0.8.8-x86_64-unknown-linux-musl.tar.gz -tar -xf ninja-0.8.8-x86_64-unknown-linux-musl.tar.gz +wget https://github.com/gngpp/ninja/releases/download/v0.8.9/ninja-0.8.9-x86_64-unknown-linux-musl.tar.gz +tar -xf ninja-0.8.9-x86_64-unknown-linux-musl.tar.gz ./ninja run ``` @@ -32,11 +32,11 @@ tar -xf ninja-0.8.8-x86_64-unknown-linux-musl.tar.gz There are pre-compiled ipk files in GitHub [Releases](https://github.com/gngpp/ninja/releases/latest), which currently provide versions of aarch64/x86_64 and other architectures. After downloading, use opkg to install, and use nanopi r4s as example: ```shell -wget https://github.com/gngpp/ninja/releases/download/v0.8.8/ninja_0.8.8_aarch64_generic.ipk -wget https://github.com/gngpp/ninja/releases/download/v0.8.8/luci-app-ninja_1.1.6-1_all.ipk -wget https://github.com/gngpp/ninja/releases/download/v0.8.8/luci-i18n-ninja-zh-cn_1.1.6-1_all.ipk +wget https://github.com/gngpp/ninja/releases/download/v0.8.9/ninja_0.8.9_aarch64_generic.ipk +wget https://github.com/gngpp/ninja/releases/download/v0.8.9/luci-app-ninja_1.1.6-1_all.ipk +wget https://github.com/gngpp/ninja/releases/download/v0.8.9/luci-i18n-ninja-zh-cn_1.1.6-1_all.ipk -opkg install ninja_0.8.8_aarch64_generic.ipk +opkg install ninja_0.8.9_aarch64_generic.ipk opkg install luci-app-ninja_1.1.6-1_all.ipk opkg install luci-i18n-ninja-zh-cn_1.1.6-1_all.ipk ``` diff --git a/doc/readme_zh.md b/doc/readme_zh.md index b9edab3fc..a8ba649c0 100644 --- a/doc/readme_zh.md +++ b/doc/readme_zh.md @@ -22,8 +22,8 @@ GitHub [Releases](https://github.com/gngpp/ninja/releases/latest) 中有预编译的 deb包,二进制文件,以Ubuntu为例: ```shell -wget https://github.com/gngpp/ninja/releases/download/v0.8.8/ninja-0.8.8-x86_64-unknown-linux-musl.tar.gz -tar -xf ninja-0.8.8-x86_64-unknown-linux-musl.tar.gz +wget https://github.com/gngpp/ninja/releases/download/v0.8.9/ninja-0.8.9-x86_64-unknown-linux-musl.tar.gz +tar -xf ninja-0.8.9-x86_64-unknown-linux-musl.tar.gz ./ninja run ``` @@ -32,11 +32,11 @@ tar -xf ninja-0.8.8-x86_64-unknown-linux-musl.tar.gz GitHub [Releases](https://github.com/gngpp/ninja/releases/latest) 中有预编译的 ipk 文件, 目前提供了 aarch64/x86_64 等架构的版本,下载后使用 opkg 安装,以 nanopi r4s 为例: ```shell -wget https://github.com/gngpp/ninja/releases/download/v0.8.8/ninja_0.8.8_aarch64_generic.ipk -wget https://github.com/gngpp/ninja/releases/download/v0.8.8/luci-app-ninja_1.1.6-1_all.ipk -wget https://github.com/gngpp/ninja/releases/download/v0.8.8/luci-i18n-ninja-zh-cn_1.1.6-1_all.ipk +wget https://github.com/gngpp/ninja/releases/download/v0.8.9/ninja_0.8.9_aarch64_generic.ipk +wget https://github.com/gngpp/ninja/releases/download/v0.8.9/luci-app-ninja_1.1.6-1_all.ipk +wget https://github.com/gngpp/ninja/releases/download/v0.8.9/luci-i18n-ninja-zh-cn_1.1.6-1_all.ipk -opkg install ninja_0.8.8_aarch64_generic.ipk +opkg install ninja_0.8.9_aarch64_generic.ipk opkg install luci-app-ninja_1.1.6-1_all.ipk opkg install luci-i18n-ninja-zh-cn_1.1.6-1_all.ipk ``` diff --git a/openai/Cargo.toml b/openai/Cargo.toml index 7c395d1b2..3bc29fb24 100644 --- a/openai/Cargo.toml +++ b/openai/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "openai" -version = "0.8.8" +version = "0.8.9" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/openwrt/ninja/Makefile b/openwrt/ninja/Makefile index d70e2749b..4423edea9 100644 --- a/openwrt/ninja/Makefile +++ b/openwrt/ninja/Makefile @@ -4,7 +4,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=ninja -PKG_VERSION:=0.8.8 +PKG_VERSION:=0.8.9 PKG_LICENSE:=MIT PKG_MAINTAINER:=gngpp