Skip to content

Commit

Permalink
bump versions, copyrights, project urls, supported python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
kurtmckee committed Apr 16, 2015
1 parent 9689c88 commit c425f32
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 19 deletions.
2 changes: 1 addition & 1 deletion NEWS
@@ -1,4 +1,4 @@
coming in the next version:
5.2.0 - April 16, 2015
* Support PyPy
* Remove the HTTP Status 9001 test that caused unit test tracebacks
* Remove the completely-untested HTML tidy code
Expand Down
6 changes: 3 additions & 3 deletions README.rst
@@ -1,7 +1,7 @@
feedparser - Parse Atom and RSS feeds in Python.

| Copyright (c) 2010-2013 Kurt McKee <contactme@kurtmckee.org>
| Copyright (c) 2002-2008 Mark Pilgrim
| Copyright 2010-2015 Kurt McKee <contactme@kurtmckee.org>
| Copyright 2002-2008 Mark Pilgrim
feedparser is open source. See the LICENSE file for more information.

Expand Down Expand Up @@ -49,7 +49,7 @@ Documentation

The feedparser documentation is available on the web at:

http://packages.python.org/feedparser
https://pythonhosted.org/feedparser/

It is also included in its source format, ReST, in the docs/ directory. To
build the documentation you'll need the Sphinx package, which is available at:
Expand Down
6 changes: 3 additions & 3 deletions docs/conf.py
@@ -1,8 +1,8 @@
# project information
project = u'feedparser'
copyright = u'2004-2008 Mark Pilgrim, 2010-2013 Kurt McKee'
version = u'5.1.3'
release = u'5.1.3'
copyright = u'2004-2008 Mark Pilgrim, 2010-2015 Kurt McKee'
version = u'5.2.0'
release = u'5.2.0'
language = u'en'

# documentation options
Expand Down
8 changes: 4 additions & 4 deletions docs/index.rst
Expand Up @@ -2,11 +2,11 @@
Documentation
=============

This documentation claims to describe the behavior of :program:`Universal Feed
Parser` |version|. It does not claim to describe the behavior of any other version.
This documentation claims to describe the behavior of :program:`feedparser` |version|.
It does not claim to describe the behavior of any other version.

This documentation lives at `http://packages.python.org/feedparser/
<http://packages.python.org/feedparser/>`_. If you're reading it somewhere else, you may
This documentation lives at `https://pythonhosted.org/feedparser/
<https://pythonhosted.org/feedparser/>`_. If you're reading it somewhere else, you may
not have the latest version.

This documentation is provided by the author "as is" without any express or
Expand Down
6 changes: 3 additions & 3 deletions feedparser/feedparser.py
Expand Up @@ -9,10 +9,10 @@
Recommended: iconv_codec <http://cjkpython.i18n.org/>
"""

__version__ = "5.1.3"
__version__ = "5.2.0"
__license__ = """
Copyright (c) 2010-2013 Kurt McKee <contactme@kurtmckee.org>
Copyright (c) 2002-2008 Mark Pilgrim
Copyright 2010-2015 Kurt McKee <contactme@kurtmckee.org>
Copyright 2002-2008 Mark Pilgrim
All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
Expand Down
4 changes: 2 additions & 2 deletions feedparser/feedparsertest.py
Expand Up @@ -2,8 +2,8 @@

__author__ = "Mark Pilgrim <http://diveintomark.org/>"
__license__ = """
Copyright (c) 2010-2013 Kurt McKee <contactme@kurtmckee.org>
Copyright (c) 2004-2008 Mark Pilgrim
Copyright 2010-2015 Kurt McKee <contactme@kurtmckee.org>
Copyright 2004-2008 Mark Pilgrim
All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
Expand Down
7 changes: 4 additions & 3 deletions setup.py
Expand Up @@ -7,13 +7,13 @@

setup(
name = 'feedparser',
version = '5.1.3',
version = '5.2.0',
description = 'Universal feed parser, handles RSS 0.9x, RSS 1.0, '
'RSS 2.0, CDF, Atom 0.3, and Atom 1.0 feeds',
author = 'Kurt McKee',
author_email = 'contactme@kurtmckee.org',
url = 'http://code.google.com/p/feedparser/',
download_url = 'http://code.google.com/p/feedparser/',
url = 'https://github.com/kurtmckee/feedparser',
download_url = 'https://pypi.python.org/pypi/feedparser',
platforms = ['POSIX', 'Windows'],
package_dir = {'': 'feedparser'},
py_modules = ['feedparser'],
Expand All @@ -34,6 +34,7 @@
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Text Processing :: Markup :: XML',
],
Expand Down

0 comments on commit c425f32

Please sign in to comment.