i dub thee v0.16
parent
8ec92cdfd4
commit
2a3ce44cc0
|
|
@ -1,7 +1,7 @@
|
||||||
# Squib CHANGELOG
|
# Squib CHANGELOG
|
||||||
Squib follows [semantic versioning](http://semver.org).
|
Squib follows [semantic versioning](http://semver.org).
|
||||||
|
|
||||||
## v0.16.0 / Unreleased
|
## v0.16.0 / 2020-11-24
|
||||||
|
|
||||||
Features:
|
Features:
|
||||||
* Special custom unit: cells. A "cell" defaults to 37.5px, or 1/8in, e.g. `x: '1 cell'` means `x: 37.5`. See the docs for details.
|
* Special custom unit: cells. A "cell" defaults to 37.5px, or 1/8in, e.g. `x: '1 cell'` means `x: 37.5`. See the docs for details.
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,7 @@ Be sure to remember to do the following for releases. (Copy into a GitHub issue)
|
||||||
- [ ] Bump docs/conf.py versions
|
- [ ] Bump docs/conf.py versions
|
||||||
- [ ] Do a full rake locally
|
- [ ] Do a full rake locally
|
||||||
- [ ] `rake sanity`, and check visually
|
- [ ] `rake sanity`, and check visually
|
||||||
- [ ] Travis is passing on dev branch
|
- [ ] GitHub Actions is passing on dev branch
|
||||||
- [ ] Merge master branch
|
- [ ] Merge master branch
|
||||||
- [ ] Merge release branch
|
- [ ] Merge release branch
|
||||||
- [ ] Push master and release branches
|
- [ ] Push master and release branches
|
||||||
|
|
|
||||||
|
|
@ -6,6 +6,6 @@ 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.16.0-preview2'
|
VERSION = '0.16.0'
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,7 @@ Squib::Deck.new(width: '1.5in', height: '1.5in') do
|
||||||
# Technically, the "cell" is actually a "unit", so you can even combine
|
# Technically, the "cell" is actually a "unit", so you can even combine
|
||||||
# with xywh shorhands!!
|
# with xywh shorhands!!
|
||||||
rect fill_color: :red,
|
rect fill_color: :red,
|
||||||
x: 'middle + 0.5c', y: 'height - 1.5c',
|
x: 'middle + 0.5c', y: 'deck - 1.5c',
|
||||||
width: '1c', height: '1c'
|
width: '1c', height: '1c'
|
||||||
|
|
||||||
# And, unlike xywh shorthands, this applies basically everywhere we support
|
# And, unlike xywh shorthands, this applies basically everywhere we support
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue