2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,9 @@ All notable changes to `:vips` will be documented in this file.
7
7
- added ` animate-image.php ` example [ jcupitt]
8
8
- added flags support [ jcupitt]
9
9
- added ` keep.php ` example [ jcupitt]
10
+ - added streaming examples [ jcupitt]
11
+ - fix php 8.3 compatibility [ uuf6429]
12
+ - better library finding [ uuf6429]
10
13
11
14
## 2.3.0 - 2023-09-26
12
15
Original file line number Diff line number Diff line change @@ -163,9 +163,10 @@ public static function version(): string
163
163
*/
164
164
public static function atLeast (int $ x , int $ y , int $ z = 0 ): bool
165
165
{
166
- return self ::$ library_major > $ x
167
- || (self ::$ library_major === $ x && self ::$ library_minor > $ y )
168
- || (self ::$ library_major === $ x && self ::$ library_minor === $ y && self ::$ library_micro >= $ z );
166
+ return self ::$ library_major > $ x ||
167
+ (self ::$ library_major === $ x && self ::$ library_minor > $ y ) ||
168
+ (self ::$ library_major === $ x && self ::$ library_minor === $ y &&
169
+ self ::$ library_micro >= $ z );
169
170
}
170
171
171
172
/**
0 commit comments