Skip to content

Commit 18d3956

Browse files
authored
Merge pull request #221 from image-rs/version-0.13
Version 0.13
2 parents a057c4e + e382be1 commit 18d3956

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

.github/workflows/rust.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name: Rust CI
22
on:
33
push:
4-
branches: [ master ]
4+
branches: [ master, "version-0.13" ]
55
pull_request:
6-
branches: [ master ]
6+
branches: [ master, "version-0.13" ]
77
jobs:
88
build:
99
runs-on: ubuntu-latest

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "gif"
33
license = "MIT OR Apache-2.0"
4-
version = "0.13.2"
4+
version = "0.13.3"
55
description = "GIF de- and encoder"
66
authors = ["The image-rs Developers"]
77
readme = "README.md"

Changes.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
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

src/reader/decoder.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ use core::cmp;
66
use core::default::Default;
77
use core::mem;
88
use core::num::NonZeroUsize;
9+
910
use std::error;
1011
use std::io;
1112

0 commit comments

Comments
 (0)