CHANGELOG.md in format_parser-0.16.1 vs CHANGELOG.md in format_parser-0.17.0
- old
+ new
@@ -1,4 +1,12 @@
+## 0.17.0
+* Remove parser factories. A parser should respond to `likely_match?` and `call`. If a parser has to be instantiated anew for
+ every call the parser should take care of instantiating itself.
+* Add support for BMP files with core headers (older version of the BMP format)
+
+## 0.16.2
+* All EXIF: Deal with EXIF orientations that get parsed as an array of [Orientation, nil] due to incorrect padding
+
## 0.16.1
* All EXIF: Make sure the 0 orientation does not get silently treated as orientation 8, mislabling
images which are not rotated as being rotated (orientation changed)
* All EXIF: Make sure the 0 orientation (`unknown`) is correctly passed and represented
* JPEG: Make sure multiple EXIF tags in APP1 markers get handled correctly (via overlays)