Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: prepare release 2.3.4 #120

Merged
merged 3 commits into from
Aug 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
ChangeLog
=========

2.3.4 (2024-08-27)
------------------

* #111: apply cs-fixer 3.54.0 changes to v2 branch (@phil-davis)
* #115: Add PHP 8.3 to CI for v2 branch (@phil-davis)
* #116: Add PHP 8.4 to CI for v2 branch (@phil-davis)
* #117: check for nullable_type_declaration (@phil-davis)

2.3.3 (2023-06-09)
------------------

Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.59",
"phpstan/phpstan": "^1.11",
"friendsofphp/php-cs-fixer": "^3.63",
"phpstan/phpstan": "^1.12",
"phpstan/phpstan-phpunit": "^1.4",
"phpstan/phpstan-strict-rules": "^1.6",
"phpstan/extension-installer": "^1.4",
Expand Down
2 changes: 1 addition & 1 deletion lib/Version.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ class Version
/**
* Full version number.
*/
public const VERSION = '2.3.3';
public const VERSION = '2.3.4';
}
16 changes: 16 additions & 0 deletions phpstan.neon
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,19 @@ parameters:
message: "#^.* will always evaluate to true\\.$#"
path: tests/*
count: 1
-
message: "#^Offset .* in isset\\(\\) always exists and is not nullable\\.$#"
path: lib/functions.php
count: 3
-
message: "#^Result of && is always true\\.$#"
path: lib/functions.php
count: 1
-
message: "#^Strict comparison using !== between '' and non-falsy-string will always evaluate to true\\.$#"
path: lib/functions.php
count: 1
-
message: "#^Strict comparison using === between false and string will always evaluate to false\\.$#"
path: lib/functions.php
count: 2
Loading