diff options
author | Valery Piashchynski <[email protected]> | 2020-12-22 11:40:29 +0300 |
---|---|---|
committer | GitHub <[email protected]> | 2020-12-22 11:40:29 +0300 |
commit | f0c76183d9b1cd1ffd696874720cc82bde54fd14 (patch) | |
tree | 5fc46b0dc06407da77dcaef56cd6214f654bb151 | |
parent | a61992293ca98c27e40ed427ee147a8abb4dcc6c (diff) | |
parent | 5a9507bdc62f0ec62c6a59888257b17806634719 (diff) |
Merge pull request #460 from spiral/release_1.9.1v1.9.1
Release 1.9.1
-rw-r--r-- | .github/workflows/build.yml | 8 | ||||
-rw-r--r-- | CHANGELOG.md | 7 | ||||
-rw-r--r-- | bors.toml | 28 | ||||
-rw-r--r-- | composer.json | 2 |
4 files changed, 26 insertions, 19 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5bcbd657..04208eeb 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -14,11 +14,11 @@ jobs: php: name: Build (PHP ${{ matrix.php }}, ${{ matrix.setup }} setup) runs-on: ubuntu-20.04 - timeout-minutes: 6 + timeout-minutes: 10 strategy: fail-fast: false matrix: - php: [ '7.3', '7.4', '8.0' ] + php: [ '7.2', '7.3', '7.4', '8.0' ] setup: [ basic, lowest ] steps: - name: Set up PHP ${{ matrix.php }} @@ -61,11 +61,11 @@ jobs: golang: name: Build (Go ${{ matrix.go }}, PHP ${{ matrix.php }}) runs-on: ubuntu-20.04 - timeout-minutes: 10 + timeout-minutes: 20 strategy: fail-fast: false matrix: - php: [ '7.3', '7.4', '8.0' ] + php: [ '7.2', '7.3', '7.4', '8.0' ] go: [ '1.14', '1.15' ] steps: - name: Set up Go ${{ matrix.go }} diff --git a/CHANGELOG.md b/CHANGELOG.md index 030b8c06..28063ba5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,12 @@ CHANGELOG ========= -UNRELEASED +v1.9.1 (21.12.2020) ---------- -- Add `rr --version` flag support +- Add `rr --version` flag support (thanks @tarampampam) +- Update `reload` plugin, remove unnecessary goroutines and locks. +- Add objectives to the metrics summary. +- Automated releases build. v1.9.0 (02.12.2020) ------------------- @@ -1,16 +1,20 @@ status = [ -'Build (PHP 7.3, basic setup)', -'Build (PHP 7.3, lowest setup)', -'Build (PHP 8.0, basic setup)', -'Build (PHP 8.0, lowest setup)', -'Build (Go 1.14, PHP 7.3)', -'Build (Go 1.15, PHP 7.3)', -'Build (Go 1.14, PHP 7.4)', -'Build (Go 1.15, PHP 7.4)', -'Build (Go 1.14, PHP 8.0)', -'Build (Go 1.15, PHP 8.0)', -'Golang-CI (lint)', -'Build docker image', + 'Build (PHP 7.2, basic setup)', + 'Build (PHP 7.2, lowest setup)', + 'Build (PHP 7.3, basic setup)', + 'Build (PHP 7.3, lowest setup)', + 'Build (PHP 8.0, basic setup)', + 'Build (PHP 8.0, lowest setup)', + 'Build (Go 1.14, PHP 7.2)', + 'Build (Go 1.15, PHP 7.2)', + 'Build (Go 1.14, PHP 7.3)', + 'Build (Go 1.15, PHP 7.3)', + 'Build (Go 1.14, PHP 7.4)', + 'Build (Go 1.15, PHP 7.4)', + 'Build (Go 1.14, PHP 8.0)', + 'Build (Go 1.15, PHP 8.0)', + 'Golang-CI (lint)', + 'Build docker image', ] required_approvals = 1 diff --git a/composer.json b/composer.json index 3d6b3d22..f64a9263 100644 --- a/composer.json +++ b/composer.json @@ -14,7 +14,7 @@ } ], "require": { - "php": "^7.3 || ^8.0", + "php": "^7.2 || ^8.0", "ext-json": "*", "ext-curl": "*", "spiral/goridge": "^2.4.2", |