Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
kvesteri committed Jan 10, 2016
1 parent 7031d82 commit 3185ce8
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ Changelog
Here you can see the full list of changes between each SQLAlchemy-Continuum release.


1.2.3 (2015-01-10)
^^^^^^^^^^^^^^^^^^

- Added use_module_name configuration option (#119, courtesy of kyheo)


1.2.2 (2015-12-08)
^^^^^^^^^^^^^^^^^^

Expand Down
2 changes: 1 addition & 1 deletion sqlalchemy_continuum/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
)


__version__ = '1.2.2'
__version__ = '1.2.3'


versioning_manager = VersioningManager()
Expand Down
3 changes: 2 additions & 1 deletion sqlalchemy_continuum/model_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,8 @@ def mapper_args(cls):
if self.manager.options.get('use_module_name', True):
name = '%s%sVersion' % (
self.model.__module__.title().replace('.', ''),
self.model.__name__)
self.model.__name__
)
else:
name = '%sVersion' % (self.model.__name__,)
return type(name, self.base_classes(), args)
Expand Down

0 comments on commit 3185ce8

Please sign in to comment.