Skip to content

Commit

Permalink
Cut 1.10.5
Browse files Browse the repository at this point in the history
  • Loading branch information
bitprophet committed Dec 5, 2016
1 parent 5430302 commit 7a64adb
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion fabric/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from os.path import abspath, dirname


VERSION = (1, 10, 4, 'final', 0)
VERSION = (1, 10, 5, 'final', 0)


def git_sha():
Expand Down
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 7a64adb

Please sign in to comment.