File tree Expand file tree Collapse file tree 4 files changed +9
-3
lines changed
Expand file tree Collapse file tree 4 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 11name : Rust CI
22on :
33 push :
4- branches : [ master ]
4+ branches : [ master, "version-0.13" ]
55 pull_request :
6- branches : [ master ]
6+ branches : [ master, "version-0.13" ]
77jobs :
88 build :
99 runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 11[package ]
22name = " gif"
33license = " MIT OR Apache-2.0"
4- version = " 0.13.2 "
4+ version = " 0.13.3 "
55description = " GIF de- and encoder"
66authors = [" The image-rs Developers" ]
77readme = " README.md"
Original file line number Diff line number Diff line change 1+ # v0.13.3
2+
3+ - Fix interpretation of LZW stream when multiple intermediate reset codes are used.
4+ - Allow extension blocks of unknown type with the ` allow_unknown_blocks ` option.
5+
16# v0.13.2
27
38- Simplified internal decoder size
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ use core::cmp;
66use core:: default:: Default ;
77use core:: mem;
88use core:: num:: NonZeroUsize ;
9+
910use std:: error;
1011use std:: io;
1112
You can’t perform that action at this time.
0 commit comments