Skip to content

Commit

Permalink
Don't expose multidict.__version__
Browse files Browse the repository at this point in the history
  • Loading branch information
asvetlov committed Jul 21, 2016
1 parent ceaf02d commit 8807440
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
1.2.1 (2016-07-21)
------------------

* Don't expose `multidict.__version__`


1.2.0 (2016-07-16)
------------------

Expand Down
4 changes: 2 additions & 2 deletions multidict/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
import os

__all__ = ('MultiDictProxy', 'CIMultiDictProxy',
'MultiDict', 'CIMultiDict', 'upstr', '__version__')
'MultiDict', 'CIMultiDict', 'upstr')

__version__ = '1.2.0'
__version__ = '1.2.1'


if bool(os.environ.get('MULTIDICT_NO_EXTENSIONS')):
Expand Down

0 comments on commit 8807440

Please sign in to comment.