Skip to content

Commit 3850fe2

Browse files
committed
bump version number for 1.1.0 release
1 parent d6b9819 commit 3850fe2

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,10 @@ To use the shortlink follower (depends on the [Requests](http://docs.python-requ
5858
changelog
5959
---------
6060

61-
* 2014/7/30 1.0.3 Update parsed URLs for Twitter API 1.1 compatibility
62-
* 2013/6/1 1.0.1 new working version, adding comma parse fix (thanks https://github.com/muckrack), used autopep8 to clean the src, added a shortlink expander
63-
* 2013/2/11 1.0.0.2 released to PyPI
61+
* 2015/04/11 1.1.0 Add basic support for Python 3
62+
* 2014/07/30 1.0.3 Update parsed URLs for Twitter API 1.1 compatibility
63+
* 2013/06/01 1.0.1 new working version, adding comma parse fix (thanks https://github.com/muckrack), used autopep8 to clean the src, added a shortlink expander
64+
* 2013/02/11 1.0.0.2 released to PyPI
6465

6566

6667
tests

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,9 @@
22

33
setup(
44
name='twitter-text-python',
5-
version='1.0.3',
5+
version='1.1.0',
66
description='Twitter Tweet parser and formatter',
77
long_description="Extract @users, #hashtags and URLs (and unwind shortened links) from tweets including entity locations, also generate HTML for output. Visit https://github.com/edburnett/twitter-text-python for examples.",
8-
#open('README.rst').read(),
98
author='Maintained by Edmond Burnett (previously Ian Ozsvald; originally Ivo Wetzel)',
109
author_email='_@edmondburnett.com',
1110
url='https://github.com/edburnett/twitter-text-python',

ttp/ttp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
except ImportError:
2727
from urllib import quote
2828

29-
__version__ = "1.0.3.0"
29+
__version__ = "1.1.0.0"
3030

3131
AT_SIGNS = r'[@\uff20]'
3232
UTF_CHARS = r'a-z0-9_\u00c0-\u00d6\u00d8-\u00f6\u00f8-\u00ff'

0 commit comments

Comments
 (0)