From e04c02cb78bcc242c69d17dac5b29436bf3e1076 Mon Sep 17 00:00:00 2001 From: Sascha Greuel Date: Tue, 27 Sep 2022 11:27:12 +0200 Subject: [PATCH] v0.7.6 --- .github/workflows/Test.yml | 3 +-- CHANGELOG.md | 7 +++++++ README.md | 2 +- composer.json | 8 ++++---- 4 files changed, 13 insertions(+), 7 deletions(-) diff --git a/.github/workflows/Test.yml b/.github/workflows/Test.yml index 273172b..199ce27 100644 --- a/.github/workflows/Test.yml +++ b/.github/workflows/Test.yml @@ -21,8 +21,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - php: [ '7.1', '7.2', '7.3', '7.4', '8.0', '8.1' ] - #continue-on-error: ${{ matrix.php == '8.1' }} + php: [ '7.1', '7.2', '7.3', '7.4' ] name: PHP ${{ matrix.php }} Test steps: diff --git a/CHANGELOG.md b/CHANGELOG.md index 2ab8f75..06685a7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,13 @@ - Dropped support for PHP < 8.0 - Removed deprecated method `JSONPath->data()` +### 0.7.6 +🔻 Breaking changes ahead: + +- Removed support for PHP >= 8.0 (use version 0.8.0+ instead) +- Switched `roave/security-advisories` from `dev-master` to `dev-latest` + +This is probably the last version for PHP 7.1 - 7.4. ### 0.7.5 - Added support for $.length diff --git a/README.md b/README.md index 90cb5e5..560d600 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# JSONPath for PHP +# JSONPath for PHP 7.1 - 7.4 [![Build Status](https://img.shields.io/github/workflow/status/SoftCreatR/JSONPath/Test/main?label=Build%20Status)](https://github.com/SoftCreatR/JSONPath/actions?query=workflow%3ATest) [![Latest Release](https://img.shields.io/packagist/v/SoftCreatR/JSONPath?color=blue&label=Latest%20Release)](https://packagist.org/packages/softcreatr/jsonpath) diff --git a/composer.json b/composer.json index 25c5d41..31fe000 100644 --- a/composer.json +++ b/composer.json @@ -1,7 +1,7 @@ { "name": "softcreatr/jsonpath", "description": "JSONPath implementation for parsing, searching and flattening arrays", - "version": "0.7.5", + "version": "0.7.6", "license": "MIT", "authors": [ { @@ -13,12 +13,12 @@ { "name": "Sascha Greuel", "email": "hello@1-2.dev", - "homepage": "http://1-2.dev", + "homepage": "https://1-2.dev", "role": "Developer" } ], "require": { - "php": ">=7.1", + "php": ">=7.1,<8.0", "ext-json": "*" }, "replace": { @@ -26,7 +26,7 @@ }, "require-dev": { "phpunit/phpunit": ">=7.0", - "roave/security-advisories": "dev-master", + "roave/security-advisories": "dev-latest", "squizlabs/php_codesniffer": "^3.5" }, "config": {