Browse Source

I dub thee v0.13.1

dev
Andy Meneely 9 years ago
parent
commit
c690e08a51
  1. 7
      CHANGELOG.md
  2. 4
      docs/conf.py
  3. 2
      lib/squib/version.rb

7
CHANGELOG.md

@ -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.

4
docs/conf.py

@ -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.

2
lib/squib/version.rb

@ -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

Loading…
Cancel
Save