Skip to content

Commit bf6d917

Browse files
committed
setting version to 0.9.0
1 parent 1f62c6f commit bf6d917

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

MANIFEST.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ include CHANGES
22
include COPYING
33
include LICENSE
44
include NOTICE
5-
include README
5+
include README.md
66
include *.py
77
recursive-include examples *.py
88
recursive-include doc *.html

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
'''The setup and build script for the python-twitter library.'''
1818

1919
__author__ = 'python-twitter@googlegroups.com'
20-
__version__ = '0.8.5'
20+
__version__ = '0.9.0'
2121

2222

2323
# The base package metadata to be used by both distutils and setuptools
@@ -27,7 +27,7 @@
2727
py_modules = ['twitter'],
2828
author='The Python-Twitter Developers',
2929
author_email='python-twitter@googlegroups.com',
30-
description='A python wrapper around the Twitter API',
30+
description='A Python wrapper around the Twitter API',
3131
license='Apache License 2.0',
3232
url='https://github.com/bear/python-twitter',
3333
keywords='twitter api',

twitter.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/python2.4
1+
#!/usr/bin/python2.6
22
#
33
# Copyright 2007 The Python-Twitter Developers
44
#
@@ -17,7 +17,7 @@
1717
'''A library that provides a Python interface to the Twitter API'''
1818

1919
__author__ = 'python-twitter@googlegroups.com'
20-
__version__ = '0.8.5'
20+
__version__ = '0.9.0'
2121

2222

2323
import calendar

0 commit comments

Comments
 (0)