Fixed version problems

This commit is contained in:
Lars Kiesow 2013-05-05 22:51:22 +02:00
parent 490c425e24
commit acf49df097
3 changed files with 3 additions and 3 deletions

View file

@ -47,7 +47,7 @@ copyright = u'2013, Lars Kiesow'
# The short X.Y version.
version = '0.2'
# The full version, including alpha/beta/rc tags.
release = '0.2.%s' % time.strftime('%Y%m%d')
release = '0.2.1'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

View file

@ -16,7 +16,7 @@ import dateutil.tz
from feedgen.entry import FeedEntry
from feedgen.util import ensure_format
_feedgen_version = 0.2
_feedgen_version = 0.2.1
class FeedGenerator(object):
'''FeedGenerator for generating ATOM and RSS feeds.

View file

@ -5,7 +5,7 @@ from distutils.core import setup
setup(
name = 'feedgen',
packages = ['feedgen'],
version = '0.2',
version = '0.2.1',
description = 'Feed Generator (ATOM, RSS, Podcasts)',
author = 'Lars Kiesow',
author_email = 'lkiesow@uos.de',