-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #55 from weilinfox/main
Add 0.13.0 doc
- Loading branch information
Showing
2 changed files
with
53 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
# v0.13.0 版本新增特性 | ||
|
||
+ 修复 0.12.0 遗留的版本匹配问题。 | ||
+ 修复 prerelease 版本识别。 | ||
|
||
## 安装 v0.13.0 | ||
|
||
在 amd64 架构环境安装: | ||
|
||
```bash | ||
$ wget https://mirror.iscas.ac.cn/ruyisdk/ruyi/releases/0.13.0/ruyi.amd64 | ||
$ chmod +x ./ruyi.amd64 | ||
$ sudo cp ./ruyi.amd64 /usr/local/bin/ruyi | ||
``` | ||
|
||
在 riscv64 架构环境安装: | ||
|
||
```bash | ||
$ wget https://mirror.iscas.ac.cn/ruyisdk/ruyi/releases/0.13.0/ruyi.riscv64 | ||
$ chmod +x ./ruyi.riscv64 | ||
$ sudo cp ./ruyi.riscv64 /usr/local/bin/ruyi | ||
``` | ||
|
||
在 arm64 架构环境安装: | ||
|
||
```bash | ||
$ wget https://mirror.iscas.ac.cn/ruyisdk/ruyi/releases/0.13.0/ruyi.arm64 | ||
$ chmod +x ./ruyi.arm64 | ||
$ sudo cp ./ruyi.arm64 /usr/local/bin/ruyi | ||
``` | ||
|
||
检查安装版本: | ||
|
||
```bash | ||
$ ruyi version | ||
Ruyi 0.13.0 | ||
|
||
Running on linux/x86_64. | ||
|
||
Copyright (C) 2023 Institute of Software, Chinese Academy of Sciences (ISCAS). | ||
All rights reserved. | ||
License: Apache-2.0 <https://www.apache.org/licenses/LICENSE-2.0> | ||
|
||
This version of ruyi makes use of code licensed under the Mozilla Public | ||
License 2.0 (https://mozilla.org/MPL/2.0/). You can get the respective | ||
project's sources from the project's official website: | ||
|
||
* certifi: https://github.com/certifi/python-certifi | ||
|
||
``` | ||
|