CHANGELOG.md in squib-0.12.0 vs CHANGELOG.md in squib-0.13.0

- old
+ new

@@ -1,8 +1,23 @@ # Squib CHANGELOG Squib follows [semantic versioning](http://semver.org). -## v0.12.0 / Unreleased +## v0.13.0 / Unreleased + +Features: +* `save_pdf`'s `crop marks` have a `:full` option that draw lines across the entire page. + +Bugs +* Fix `Squib::DataFrame#to_pretty_text` modification issue (#191) +* Downgraded Pango et al. back to 3.0.9 from 3.1.0 because there are bugs in the new gobject-introspection library. + +Chores: +* Shrank the gem itself by ignoring test data. From about 5mb to 64kb - yay! +* Bump roo to newest version (2.7.0). +* Bumped Nokogiri to latest version (1.7.0). +* Re-organized the samples folder for better regression and sanity testing prior to release. + +## v0.12.0 / 2016-12-02 Features: * `save_pdf` now supports crop marks! These are lines drawn in the margins of a PDF file to help you cut. These can be enabled by setting `crop_marks: true` in your `save_pdf` call. Can be further customized with `crop_margin_bottom`, `crop_margin_left`, `crop_margin_right`, `crop_margin_top`, `crop_marks`, `crop_stroke_color`, `crop_stroke_dash`, and `crop_stroke_width` (#123) * `Squib.configure` allows you to set options programmatically, overriding your config.yml. This is useful for Rakefiles, and will be documented in my upcoming tutorial on workflows. * `Squib.enable_build_globally` and `Squib.disable_build_globally` are new convenience methods for working with the `SQUIB_BUILD` environment variable. Handy for Rakefiles and Guard sessions for turning certain builds on an off. Also will be documented in upcoming workflow tutorial.