I dub thee v0.13.1

dev
Andy Meneely 2017-01-06 19:49:40 -05:00
parent 240d40a0c0
commit c690e08a51
3 changed files with 9 additions and 4 deletions

View File

@ -1,7 +1,12 @@
# Squib CHANGELOG # Squib CHANGELOG
Squib follows [semantic versioning](http://semver.org). 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: Features:
* `save_pdf`'s `crop marks` have a `:full` option that draw lines across the entire page. * `save_pdf`'s `crop marks` have a `:full` option that draw lines across the entire page.

View File

@ -55,9 +55,9 @@ author = u'Andy Meneely'
# built documents. # built documents.
# #
# The short X.Y version. # The short X.Y version.
version = u'v0.14' version = u'v0.13'
# The full version, including alpha/beta/rc tags. # 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 # The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages. # for a list of supported languages.

View File

@ -6,5 +6,5 @@ module Squib
# Most of the time this is in the alpha of the next release. # 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 # e.g. v0.0.5a is on its way to becoming v0.0.5
# #
VERSION = '0.14.0a' VERSION = '0.13.1'
end end