From c690e08a51948b81bac0571a9ed46cde2b91d4e2 Mon Sep 17 00:00:00 2001 From: Andy Meneely Date: Fri, 6 Jan 2017 19:49:40 -0500 Subject: [PATCH] I dub thee v0.13.1 --- CHANGELOG.md | 7 ++++++- docs/conf.py | 4 ++-- lib/squib/version.rb | 2 +- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4d72a7f..7b948a8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,12 @@ # Squib CHANGELOG Squib follows [semantic versioning](http://semver.org). -## v0.13.0 / Unreleased +## v0.13.1 / 2017-01-06 + +Bugs: +* New Windows installations break because Rubygems looks for 1.15.4 and it's not there (yet). Locking into Cairo 1.15.3 and being more conservative from now on. + +## v0.13.0 / 2017-01-04 Features: * `save_pdf`'s `crop marks` have a `:full` option that draw lines across the entire page. diff --git a/docs/conf.py b/docs/conf.py index 831d09a..32b706a 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -55,9 +55,9 @@ author = u'Andy Meneely' # built documents. # # The short X.Y version. -version = u'v0.14' +version = u'v0.13' # The full version, including alpha/beta/rc tags. -release = u'v0.14.0a' +release = u'v0.13.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/lib/squib/version.rb b/lib/squib/version.rb index 8db07b5..f13aaae 100644 --- a/lib/squib/version.rb +++ b/lib/squib/version.rb @@ -6,5 +6,5 @@ module Squib # Most of the time this is in the alpha of the next release. # e.g. v0.0.5a is on its way to becoming v0.0.5 # - VERSION = '0.14.0a' + VERSION = '0.13.1' end