Skip to content

Commit

Permalink
Merge pull request #55 from weilinfox/main
Browse files Browse the repository at this point in the history
Add 0.13.0 doc
  • Loading branch information
xijing21 authored Jun 28, 2024
2 parents 79c3bb2 + 2d1ef06 commit fda6080
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docs/.vitepress/config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@ export default defineConfig({
{ text: 'v0.9.0 版本新增特性', link: '/zh/ruyi/updates/0.9.0' },
{ text: 'v0.10.0 版本新增特性', link: '/zh/ruyi/updates/0.10.0' },
{ text: 'v0.11.0 版本新增特性', link: '/zh/ruyi/updates/0.11.0' },
{ text: 'v0.12.0 版本新增特性', link: '/zh/ruyi/updates/0.12.0' }
{ text: 'v0.12.0 版本新增特性', link: '/zh/ruyi/updates/0.12.0' },
{ text: 'v0.13.0 版本新增特性', link: '/zh/ruyi/updates/0.13.0' }
]
}
]
Expand Down
51 changes: 51 additions & 0 deletions docs/zh/ruyi/updates/0.13.0.md
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

```

0 comments on commit fda6080

Please sign in to comment.