diff options
-rw-r--r-- | .github/workflows/ci-build.yml | 2 | ||||
-rw-r--r-- | CHANGELOG.md | 6 | ||||
-rwxr-xr-x | build.sh | 2 | ||||
-rw-r--r-- | composer.json | 4 |
4 files changed, 10 insertions, 4 deletions
diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index 6045fd57..c85aa6c9 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -9,7 +9,7 @@ jobs: strategy: fail-fast: false matrix: - php: [7.3, 7.4] + php: [7.2, 7.3, 7.4] go: [1.13, 1.14] os: [ubuntu-latest] env: diff --git a/CHANGELOG.md b/CHANGELOG.md index 229609fd..78a13926 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ CHANGELOG ========= +v1.8.0 (05.05.2020) +------------------- +- Update goridge version to 2.4.0 +- Update PHP version to the 7.2 (currently minimum supported) +- See the full milestone here: [link](https://github.com/spiral/goridge/issues?q=is%3Aclosed+milestone%3A2.4.0) + v1.7.1 (22.04.2020) ------------------- - Syscall usage optimized. Now the data is packing and sending via 1 (or 2 in some cases) send_socket calls, instead of 2-3 (by @vvval) @@ -3,7 +3,7 @@ cd $(dirname "${BASH_SOURCE[0]}") OD="$(pwd)" # Pushes application version into the build information. -RR_VERSION=1.7.1 +RR_VERSION=1.8.0 # Hardcode some values to the core package LDFLAGS="$LDFLAGS -X github.com/spiral/roadrunner/cmd/rr/cmd.Version=${RR_VERSION}" diff --git a/composer.json b/composer.json index fde54fa8..c4fa8609 100644 --- a/composer.json +++ b/composer.json @@ -14,10 +14,10 @@ } ], "require": { - "php": "^7.1", + "php": "^7.2", "ext-json": "*", "ext-curl": "*", - "spiral/goridge": "^2.3", + "spiral/goridge": "^2.4", "psr/http-factory": "^1.0", "psr/http-message": "^1.0", "symfony/console": "^2.5.0 || ^3.0.0 || ^4.0.0 || ^5.0.0", |