Skip to content

Commit

Permalink
Hello 0.1.1 version!
Browse files Browse the repository at this point in the history
  • Loading branch information
uralbash committed Apr 21, 2015
1 parent 2e05cfd commit e3bc4ed
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
13 changes: 13 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
0.1.1 (2015-04-21)
==================

Features
--------

- Add test for rst docs and migrate on new itcase_sphinx_theme (#40)

Bug Fixes
---------

- Remove recursion from BaseNestedSets.get_tree method (#39)

0.1.0 (2014-11-18)
==================

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def read(name):
test_suite="nose.collector",
license="MIT",
description='SQLAlchemy MPTT mixins (Nested Sets)',
long_description=read('README.rst'),
long_description=read('README.rst') + '\n' + read('CHANGES.txt'),
install_requires=read('requirements.txt'),
classifiers=[
'Development Status :: 5 - Production/Stable',
Expand Down
2 changes: 1 addition & 1 deletion sqlalchemy_mptt/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from .mixins import BaseNestedSets
from .events import TreesManager

__version__ = "0.1.1.dev1"
__version__ = "0.1.1"
__mixins__ = [BaseNestedSets]
__all__ = ['BaseNestedSets', 'mptt_sessionmaker']

Expand Down

0 comments on commit e3bc4ed

Please sign in to comment.