Skip to content

Commit e3bc4ed

Browse files
committed
Hello 0.1.1 version!
1 parent 2e05cfd commit e3bc4ed

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

CHANGES.txt

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
0.1.1 (2015-04-21)
2+
==================
3+
4+
Features
5+
--------
6+
7+
- Add test for rst docs and migrate on new itcase_sphinx_theme (#40)
8+
9+
Bug Fixes
10+
---------
11+
12+
- Remove recursion from BaseNestedSets.get_tree method (#39)
13+
114
0.1.0 (2014-11-18)
215
==================
316

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def read(name):
2727
test_suite="nose.collector",
2828
license="MIT",
2929
description='SQLAlchemy MPTT mixins (Nested Sets)',
30-
long_description=read('README.rst'),
30+
long_description=read('README.rst') + '\n' + read('CHANGES.txt'),
3131
install_requires=read('requirements.txt'),
3232
classifiers=[
3333
'Development Status :: 5 - Production/Stable',

sqlalchemy_mptt/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
from .mixins import BaseNestedSets
1111
from .events import TreesManager
1212

13-
__version__ = "0.1.1.dev1"
13+
__version__ = "0.1.1"
1414
__mixins__ = [BaseNestedSets]
1515
__all__ = ['BaseNestedSets', 'mptt_sessionmaker']
1616

0 commit comments

Comments
 (0)