Skip to content

Commit b76524c

Browse files
authored
Merge pull request #120 from phil-davis/prepare-2.3.4
chore: prepare release 2.3.4
2 parents 25fbf8f + 7a4164f commit b76524c

File tree

4 files changed

+27
-3
lines changed

4 files changed

+27
-3
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
ChangeLog
22
=========
33

4+
2.3.4 (2024-08-27)
5+
------------------
6+
7+
* #111: apply cs-fixer 3.54.0 changes to v2 branch (@phil-davis)
8+
* #115: Add PHP 8.3 to CI for v2 branch (@phil-davis)
9+
* #116: Add PHP 8.4 to CI for v2 branch (@phil-davis)
10+
* #117: check for nullable_type_declaration (@phil-davis)
11+
412
2.3.3 (2023-06-09)
513
------------------
614

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@
3737
}
3838
},
3939
"require-dev": {
40-
"friendsofphp/php-cs-fixer": "^3.59",
41-
"phpstan/phpstan": "^1.11",
40+
"friendsofphp/php-cs-fixer": "^3.63",
41+
"phpstan/phpstan": "^1.12",
4242
"phpstan/phpstan-phpunit": "^1.4",
4343
"phpstan/phpstan-strict-rules": "^1.6",
4444
"phpstan/extension-installer": "^1.4",

lib/Version.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ class Version
1616
/**
1717
* Full version number.
1818
*/
19-
public const VERSION = '2.3.3';
19+
public const VERSION = '2.3.4';
2020
}

phpstan.neon

+16
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,19 @@ parameters:
66
message: "#^.* will always evaluate to true\\.$#"
77
path: tests/*
88
count: 1
9+
-
10+
message: "#^Offset .* in isset\\(\\) always exists and is not nullable\\.$#"
11+
path: lib/functions.php
12+
count: 3
13+
-
14+
message: "#^Result of && is always true\\.$#"
15+
path: lib/functions.php
16+
count: 1
17+
-
18+
message: "#^Strict comparison using !== between '' and non-falsy-string will always evaluate to true\\.$#"
19+
path: lib/functions.php
20+
count: 1
21+
-
22+
message: "#^Strict comparison using === between false and string will always evaluate to false\\.$#"
23+
path: lib/functions.php
24+
count: 2

0 commit comments

Comments
 (0)