Skip to content

Commit

Permalink
Release 0.10.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Slavek Kabrda committed Mar 25, 2019
1 parent 42c28a9 commit 454b3d8
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
@@ -1,7 +1,11 @@
Release 0.10.4
--------------

- drop Python 2.6, 3.3 and Jython support
- add Python 3.6 and 3.7 support
- don't hide exception when flexmock is used as context manager
- fix expectation reset for static methods on pypy 2
- ensure original exception isn't suppressed in pytest hook

Release 0.10.3
--------------
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Expand Up @@ -51,7 +51,7 @@
# built documents.
#
# The short X.Y version.
version = '0.10.3'
version = '0.10.4'
# The full version, including alpha/beta/rc tags.
release = version

Expand Down
2 changes: 1 addition & 1 deletion flexmock.py
Expand Up @@ -25,7 +25,7 @@

# from flexmock import * is evil, keep it from doing any damage
__all__ = ['flexmock']
__version__ = '0.10.3'
__version__ = '0.10.4'


import inspect
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -6,7 +6,7 @@
from distutils.core import setup

setup(name='flexmock',
version='0.10.3',
version='0.10.4',
author='Slavek Kabrda, Herman Sheremetyev',
author_email='slavek@redhat.com',
url='http://flexmock.readthedocs.org',
Expand Down

0 comments on commit 454b3d8

Please sign in to comment.