Permalink
Browse files

Fixed requirements bug; added CHANGELOG

  • Loading branch information...
1 parent eb8e3ac commit 86d82f31d084343f30d7ce70064570572c7dc2e8 @cndreisbach cndreisbach committed Feb 17, 2013
Showing with 23 additions and 3 deletions.
  1. +12 −0 CHANGELOG.txt
  2. +2 −0 MANIFEST.in
  3. +6 −0 README.rst
  4. +2 −2 docs/conf.py
  5. +1 −1 setup.py
View
@@ -0,0 +1,12 @@
+0.1.2 - 2013/2/17
+=================
+* fixed bug preventing requirements from being found
+* added CHANGELOG and contributors
+
+0.1.1 - 2013/2/16
+=================
+* added documentation
+
+0.1.0 - 2013/2/15
+=================
+* initial release
View
@@ -1,4 +1,6 @@
include README.rst
include TERMS.txt
+include CHANGELOG.txt
+include requirements.txt
include docs/*
include hmda_tools/data/code_sheet_data/*
View
@@ -16,3 +16,9 @@ purchases, home purchase pre-approvals, home improvement, and refinance applicat
Documentation
--------------
Documentation can be found at https://hmda-tools.readthedocs.org/.
+
+Contributors
+-------------
+* Clinton Dreisbach
+* Ross Karchner
+* Diego Lapiduz
View
@@ -50,9 +50,9 @@
# built documents.
#
# The short X.Y version.
-version = '0.1'
+version = '0.1.2'
# The full version, including alpha/beta/rc tags.
-release = '0.1'
+release = '0.1.2'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
View
@@ -28,7 +28,7 @@ def requirements():
return map(lambda x: x.strip(), f.readlines())
setup(name='hmda_tools',
- version='0.1.1',
+ version='0.1.2',
description='Tools to make working with HMDA data easier.',
long_description=readme(),
url='http://github.com/cfpb/hmda-tools',

0 comments on commit 86d82f3

Please sign in to comment.