Skip to content

Commit

Permalink
Merge pull request #54 from huangzhhui/release-v0.5.1
Browse files Browse the repository at this point in the history
Update version number to v0.5.1
  • Loading branch information
huangzhhui authored Oct 11, 2022
2 parents bce010f + 94792c5 commit b8b1e9c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions README-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Box 致力于帮助提升 PHP 应用程序的编程体验,尤其有助于 Hype
##### Mac

```bash
wget https://github.com/hyperf/box/releases/download/v0.5.0/box_x86_64_macos -O box
wget https://github.com/hyperf/box/releases/download/v0.5.1/box_x86_64_macos -O box
sudo mv ./box /usr/local/bin/box
sudo chmod 755 /usr/local/bin/box
// 确保 /usr/local/bin/box 在你的 $PATH 环境中,或者将 `box` 放到你想要的任意 $PATH 路径中
Expand All @@ -22,7 +22,7 @@ sudo chmod 755 /usr/local/bin/box
##### Linux x86_64

```bash
wget https://github.com/hyperf/box/releases/download/v0.5.0/box_x86_64_linux -O box
wget https://github.com/hyperf/box/releases/download/v0.5.1/box_x86_64_linux -O box
sudo mv ./box /usr/local/bin/box
sudo chmod 755 /usr/local/bin/box
// 确保 /usr/local/bin/box 在你的 $PATH 环境中,或者将 `box` 放到你想要的任意 $PATH 路径中
Expand All @@ -41,7 +41,7 @@ sudo chmod 755 /usr/local/bin/box
##### Windows

```powershell
curl -o box.exe https://github.com/hyperf/box/releases/download/v0.5.0/box_x64_windows.exe
curl -o box.exe https://github.com/hyperf/box/releases/download/v0.5.1/box_x64_windows.exe
// 将 `box.exe` 放到你想要的任意 Path 环境变量路径中,同时 Windows 版本在执行时需要在命令行中使用 `box.exe` 而不是 `box`
```

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Box is committed to helping improve the programming experience of PHP applicatio
##### Mac

```bash
wget https://github.com/hyperf/box/releases/download/v0.5.0/box_x86_64_macos -O box
wget https://github.com/hyperf/box/releases/download/v0.5.1/box_x86_64_macos -O box
sudo mv ./box /usr/local/bin/box
sudo chmod 755 /usr/local/bin/box
// Make sure /usr/local/bin/box in your $PATH env, or put `box` into any path in $PATH env that you want
Expand All @@ -22,7 +22,7 @@ sudo chmod 755 /usr/local/bin/box
##### Linux x86_64

```bash
wget https://github.com/hyperf/box/releases/download/v0.5.0/box_x86_64_linux -O box
wget https://github.com/hyperf/box/releases/download/v0.5.1/box_x86_64_linux -O box
sudo mv ./box /usr/local/bin/box
sudo chmod 755 /usr/local/bin/box
// Make sure /usr/local/bin/box in your $PATH env, or put `box` into any path in $PATH env that you want
Expand All @@ -41,7 +41,7 @@ sudo chmod 755 /usr/local/bin/box
##### Windows

```powershell
curl -o box.exe https://github.com/hyperf/box/releases/download/v0.5.0/box_x64_windows.exe
curl -o box.exe https://github.com/hyperf/box/releases/download/v0.5.1/box_x64_windows.exe
// Put `box.exe` into any path in $PATH env that you want, and use `box.exe` instead of `box` when executing on Windows
```

Expand Down
2 changes: 1 addition & 1 deletion src/app/Box.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@

class Box
{
public const VERSION = '0.5.0';
public const VERSION = '0.5.1';
}

0 comments on commit b8b1e9c

Please sign in to comment.