Prep for 0.1.2 release

pull/11/head 0.1.2
Richard Harding 12 years ago
parent 811921775c
commit 46ede7ccfb

@ -6,10 +6,20 @@
News
====
0.1.2
------
* Release date: June 28th 2012*
* Bugfix: #4 issue with logic of the 100char bonus points in scoring
* Garden with PyLint/PEP8
* Add a bunch of tests to readable/scoring code.
0.1.1
------
*Release date: May 11th 2012*
* Release date: May 11th 2012*
* Fix bugs in scoring to help in getting right content
* Add concept of -d which shows scoring/decisions on nodes

@ -6,7 +6,7 @@ README = open(os.path.join(here, 'README.rst')).read()
NEWS = open(os.path.join(here, 'NEWS.txt')).read()
version = '0.1.1'
version = '0.1.2'
install_requires = [
# List your project dependencies here.
# For more details, see:
@ -35,7 +35,7 @@ setup(name='breadability',
url='http://docs.bmark.us',
license='BSD',
packages=find_packages('src'),
package_dir = {'': 'src'},
package_dir={'': 'src'},
include_package_data=True,
zip_safe=False,
install_requires=install_requires,
@ -48,4 +48,3 @@ setup(name='breadability',
['breadability=breadability:client.main']
}
)

@ -1,3 +1 @@
VERSION = '0.1.0'
import client
VERSION = '0.1.2'

Loading…
Cancel
Save