Skip to content

Commit

Permalink
Fixed setup.py and bump to 0.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
fsouza committed Sep 12, 2011
1 parent c1a3a71 commit 538af76
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
5 changes: 5 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,11 @@ Community
Changelog
+++++++++

Flask-MongoAlchemy 0.5.3
------------------------

* [bugfix] fixed a bug on setup.py

Flask-MongoAlchemy 0.5.2
------------------------

Expand Down
6 changes: 2 additions & 4 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), '..')))
sys.path.append(os.path.abspath('_themes'))

from flaskext.mongoalchemy import __version__

# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
Expand Down Expand Up @@ -53,9 +51,9 @@
# built documents.
#
# The short X.Y version.
version = __version__
version = '0.5'
# The full version, including alpha/beta/rc tags.
release = __version__
release = '0.5.3'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 0 additions & 2 deletions flaskext/mongoalchemy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@

from flaskext.mongoalchemy.meta import make_document_class

__version__ = '0.5.2'


def _include_mongoalchemy(obj):
for key in dir(fields):
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,14 @@
"""
from setuptools import setup
from flaskext.mongoalchemy import __version__

readme = __doc__
with open('README.rst') as readme_file:
readme = readme_file.read()

setup(
name='Flask-MongoAlchemy',
version=__version__,
version='0.5.3',
url='http://github.com/cobrateam/flask-mongoalchemy',
license='BSD',
author='Francisco Souza',
Expand Down

0 comments on commit 538af76

Please sign in to comment.