Skip to content

Commit

Permalink
Merge branch '1.10' into 1.11
Browse files Browse the repository at this point in the history
  • Loading branch information
bitprophet committed Dec 5, 2016
2 parents f4f8106 + 7a64adb commit 36930d4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions sites/www/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
Changelog
=========

* :release:`1.10.5 <2016-12-05>`
* :bug:`1470` When using `~fabric.operations.get` with glob expressions, a lack
of matches for the glob would result in an empty file named after the glob
expression (in addition to raising an error). This has been fixed so the
Expand Down
7 changes: 5 additions & 2 deletions tasks.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
from invocations.docs import docs, www
from invocations import packaging
from invocations.packaging import release

from invoke import Collection


ns = Collection(docs, www, release=packaging)
ns = Collection(docs, www, release)
ns.configure({
'packaging': {
'sign': True,
'wheel': True,
'changelog_file': 'sites/www/changelog.rst',
'package': 'fabric',
'version_module': 'version',
},
})

0 comments on commit 36930d4

Please sign in to comment.