chunky_png 1.3.9 → 1.3.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2cfe87146ba99f2c0cba5133d6f6009d4277cb28
4
- data.tar.gz: a9ac39bc20556d7a8c26662e0fffb9e9fcd39dc2
3
+ metadata.gz: f5994cad3fd89da3d87adbfa54f6679922703f97
4
+ data.tar.gz: f4d1490474f2c4a11c81cd72a54c625862349348
5
5
  SHA512:
6
- metadata.gz: '0408de85990b63ddd1fe099ab6f35a2abe71b23b5d2aaa903de201f9e75e488a3f0c32cc379e01459eb248537d5867df00cf70dd5fc10a853e1e9a47dd8ad035'
7
- data.tar.gz: 5ad5543e38c03b1a58c9dc777be40cf744fbe2c8fe5270884eacc51dcfbe497eb00f706a6d5b547699ed50ffa002e51b5c58f1b656c6ed738596212754f20c4b
6
+ metadata.gz: 504c70f6cab884f7e82ec51fefcfb0c5d95050acb3088453f8480a0fcf123aa690a2d13cf9e0f13ff52933a1e53c15dcdbc4b85828164b778d29dc8fe2dcf6d3
7
+ data.tar.gz: 27ff12009d136106032b8858af5da29c7417c3429456885e5ccc3d8450d09d291174e0858958bfd5c82841081c8d94ee7c460002a2eb5c40bc8e5c40e145e43d
@@ -9,6 +9,10 @@ The file documents the changes to this library over the different versions.
9
9
 
10
10
  *Noething yet*
11
11
 
12
+ === 1.3.10 - 2018-01-23
13
+
14
+ - Fixed a regression in Datastream#metadata, which was not able to deal with iTXt chunks.
15
+
12
16
  === 1.3.9 - 2018-01-23
13
17
 
14
18
  - Add support for reading and writing an international textual data (iTXt chunks).
@@ -143,7 +143,7 @@ module ChunkyPNG
143
143
  def metadata
144
144
  metadata = {}
145
145
  other_chunks.select do |chunk|
146
- metadata[chunk.keyword] = chunk.value if chunk.respond_to?(:keyword)
146
+ metadata[chunk.keyword] = chunk.value if chunk.respond_to?(:keyword) && chunk.respond_to?(:value)
147
147
  end
148
148
  metadata
149
149
  end
@@ -1,5 +1,5 @@
1
1
  module ChunkyPNG
2
2
  # The current version of ChunkyPNG.
3
3
  # Set it and commit the change this before running rake release.
4
- VERSION = "1.3.9"
4
+ VERSION = "1.3.10"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: chunky_png
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.9
4
+ version: 1.3.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Willem van Bergen