File tree Expand file tree Collapse file tree 3 files changed +11
-2
lines changed Expand file tree Collapse file tree 3 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ )
6
6
and this project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
7
7
8
+ ## [ 2.1.0] - 2020-06-01
9
+ ### Changed
10
+ - Don't execute ob_flush() when output buffering is not enabled (#152 )
11
+ - Fix inconsistent return type on 32-bit systems (#149 ) Fix #144
12
+ - Use mbstring polyfill (#151 )
13
+ - Promote 7zip usage over unzip to avoid UTF-8 issues (#147 )
14
+
8
15
## [ 2.0.0] - 2020-02-22
9
16
### Breaking change
10
17
- Only the self opened streams will be closed (#139 )
Original file line number Diff line number Diff line change 10
10
*
11
11
* @method static STORE(): Method
12
12
* @method static DEFLATE(): Method
13
+ * @psalm-immutable
13
14
*/
14
15
class Method extends Enum
15
16
{
16
17
const STORE = 0x00 ;
17
18
const DEFLATE = 0x08 ;
18
- }
19
+ }
Original file line number Diff line number Diff line change 12
12
* @method static STORE(): Version
13
13
* @method static DEFLATE(): Version
14
14
* @method static ZIP64(): Version
15
+ * @psalm-immutable
15
16
*/
16
17
class Version extends Enum
17
18
{
18
19
const STORE = 0x000A ; // 1.00
19
20
const DEFLATE = 0x0014 ; // 2.00
20
21
const ZIP64 = 0x002D ; // 4.50
21
- }
22
+ }
You can’t perform that action at this time.
0 commit comments