Skip to content

Commit fb401b1

Browse files
committed
Update CHANGELOG and setup.py to version 1.2
1 parent f349582 commit fb401b1

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

CHANGELOG.rst

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,18 @@
1-
1.2.dev
2-
-------
1+
1.2
2+
---
33

44
* Try to import ``mock`` first instead of ``unittest.mock``. This gives the user flexibility
55
to install a newer ``mock`` version from PyPI instead of using the one available in the
66
Python distribution.
77
Thanks `@wcooley`_ for the PR (`#54`_).
8+
89
* ``mock.sentinel`` is now aliased as ``mocker.sentinel`` for convenience.
10+
Thanks `@kjwilcox`_ for the PR (`#56`_).
911

1012
.. _@wcooley: https://github.com/wcooley
11-
.. _#54: https://github.com/pytest-dev/pytest-mock/issues/54
13+
.. _@kjwilcox: https://github.com/kjwilcox
14+
.. _#54: https://github.com/pytest-dev/pytest-mock/issues/54
15+
.. _#56: https://github.com/pytest-dev/pytest-mock/pull/56
1216

1317
1.1
1418
---

pytest_mock.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
except ImportError:
88
import unittest.mock as mock_module
99

10-
version = '1.1'
10+
version = '1.2'
1111

1212

1313
class MockFixture(object):

0 commit comments

Comments
 (0)