Skip to content

Commit

Permalink
Bump to version 0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
pneff committed Jan 17, 2012
1 parent 574af0b commit acbe442
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@


# General information about the project. # General information about the project.
project = u'WsgiService' project = u'WsgiService'
copyright = u'2009-2010, Patrice Neff' copyright = u'2009-2012, Patrice Neff'


# The version info for the project you're documenting, acts as replacement for # The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the # |version| and |release|, also used in various other places throughout the
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
setup( setup(
name='WsgiService', name='WsgiService',
# Version number also needs to be updated in wsgiservice/__init__.py # Version number also needs to be updated in wsgiservice/__init__.py
version='0.2.7', version='0.3',
description="A lean WSGI framework for easy creation of REST services", description="A lean WSGI framework for easy creation of REST services",
long_description=open('README').read(), long_description=open('README').read(),
author=", ".join([ author=", ".join([
Expand All @@ -23,7 +23,7 @@
test_suite='nose.collector', test_suite='nose.collector',
license='BSD', license='BSD',
classifiers=[ classifiers=[
'Development Status :: 4 - Beta', 'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment', 'Environment :: Web Environment',
'Intended Audience :: Developers', 'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License', 'License :: OSI Approved :: BSD License',
Expand Down
2 changes: 1 addition & 1 deletion wsgiservice/__init__.py
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
available here as well to keep the number of imports to a minimum for most available here as well to keep the number of imports to a minimum for most
applications. applications.
""" """
__version__ = "0.2.6" __version__ = "0.3"


from application import get_app from application import get_app
from decorators import mount, validate, expires from decorators import mount, validate, expires
Expand Down

0 comments on commit acbe442

Please sign in to comment.