From 94792c5d7d7cca80081d238d9efe3f34d98b0d65 Mon Sep 17 00:00:00 2001 From: huangzhhui Date: Tue, 11 Oct 2022 20:40:19 +0800 Subject: [PATCH] Update version number to v0.5.1 --- README-CN.md | 6 +++--- README.md | 6 +++--- src/app/Box.php | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README-CN.md b/README-CN.md index 9d68c69..37d3bf8 100644 --- a/README-CN.md +++ b/README-CN.md @@ -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 路径中 @@ -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 路径中 @@ -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` ``` diff --git a/README.md b/README.md index 7fe5c1c..2597cf8 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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 @@ -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 ``` diff --git a/src/app/Box.php b/src/app/Box.php index e819448..d2d3654 100644 --- a/src/app/Box.php +++ b/src/app/Box.php @@ -14,5 +14,5 @@ class Box { - public const VERSION = '0.5.0'; + public const VERSION = '0.5.1'; }