summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Gr?nholm <alex.gronholm@nextday.fi>2014-01-14 11:06:23 +0200
committerAlex Gr?nholm <alex.gronholm@nextday.fi>2014-01-14 11:06:23 +0200
commit50cea703f4d7865c5b3f1d5027e7369af7068c49 (patch)
treee8dab03779d94539c1c00d0fc4841605e2379e0d
parentb48732e4f98ac8dcc181fe24f559bac75ab222b0 (diff)
downloadfutures-50cea703f4d7865c5b3f1d5027e7369af7068c49.tar.gz
Fixed files missing from the source distribution2.1.6
-rw-r--r--CHANGES6
-rw-r--r--MANIFEST.in5
-rw-r--r--docs/conf.py4
-rwxr-xr-xsetup.py2
4 files changed, 14 insertions, 3 deletions
diff --git a/CHANGES b/CHANGES
index 1e75eaa..4418f07 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,9 @@
+2.1.6
+=====
+
+- Fixed a problem with files missing from the source distribution
+
+
2.1.5
=====
diff --git a/MANIFEST.in b/MANIFEST.in
new file mode 100644
index 0000000..52860d0
--- /dev/null
+++ b/MANIFEST.in
@@ -0,0 +1,5 @@
+recursive-include docs *
+include *.py
+include tox.ini
+include CHANGES
+include LICENSE
diff --git a/docs/conf.py b/docs/conf.py
index 124cd51..5cea44c 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -45,9 +45,9 @@ copyright = u'2009-2011, Brian Quinlan'
# built documents.
#
# The short X.Y version.
-version = '2.1.3'
+version = '2.1.6'
# The full version, including alpha/beta/rc tags.
-release = '2.1.3'
+release = '2.1.6'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
diff --git a/setup.py b/setup.py
index 16ea890..79be06c 100755
--- a/setup.py
+++ b/setup.py
@@ -12,7 +12,7 @@ except ImportError:
from distutils.core import setup
setup(name='futures',
- version='2.1.5',
+ version='2.1.6',
description='Backport of the concurrent.futures package from Python 3.2',
author='Brian Quinlan',
author_email='brian@sweetapp.com',