Skip to content

Commit

Permalink
Bump version to 0.3.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
zsiciarz committed Jun 3, 2011
1 parent 4a78fec commit 33ec187
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
8 changes: 7 additions & 1 deletion CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
0.3.0
- introduced a class-based envelope.views.ContactView (requires Django >= 1.3)
- deprecated the function-based view envelope.views.contact
- improved test coverage
- more and better documentation (also hosted on Read The Docs)

0.2.1
- French translation added

Expand All @@ -19,4 +25,4 @@
- improved setup script, added dependencies

0.1.0
- initial version
- initial version
3 changes: 2 additions & 1 deletion envelope/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version_info__ = (0, 3, 0, 'dev', 0)
__version_info__ = (0, 3, 0, 'final', 0)

def get_version():
version = '%s.%s' % (__version_info__[0], __version_info__[1])
Expand All @@ -11,3 +11,4 @@ def get_version():
return version

__version__ = get_version()

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def read(fname):
install_requires=['Django', 'django-honeypot'],
packages=find_packages(),
include_package_data=True,
classifiers=['Development Status :: 4 - Beta',
classifiers=['Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
Expand Down

0 comments on commit 33ec187

Please sign in to comment.