Skip to content

Commit

Permalink
Bump to 0.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
fsouza committed Sep 12, 2011
1 parent c8e9c9b commit c1a3a71
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
6 changes: 4 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
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 @@ -51,9 +53,9 @@
# built documents.
#
# The short X.Y version.
version = '0.5'
version = __version__
# The full version, including alpha/beta/rc tags.
release = '0.5.1'
release = __version__

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

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: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,15 @@
"""
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='0.5.1',
version=__version__,
url='http://github.com/cobrateam/flask-mongoalchemy',
license='BSD',
author='Francisco Souza',
Expand Down

0 comments on commit c1a3a71

Please sign in to comment.