Skip to content

Commit

Permalink
Preparing release 4.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jamadden committed Oct 24, 2023
1 parent f58fd0e commit 23101f0
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Changes
=========

4.0.0 (unreleased)
4.0.0 (2023-10-24)
==================

- Add support for Python 3.10, 3.11 and 3.12.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from setuptools import setup, find_packages


version = '4.0.0.dev0'
version = '4.0.0'

entry_points = {
}
Expand Down
4 changes: 2 additions & 2 deletions src/nti/testing/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ class PatchingMixin:
"""
Mixin class adding support for dynamic :mod:`unittest.mock` patches.
.. versionadded:: NEXT
.. versionadded:: 4.0.0
"""
def patch(self, *args, **kwargs):
"""
Expand All @@ -162,7 +162,7 @@ def patch(self, *args, **kwargs):
Returns the result of ``patch.start()``, i.e., a mock object.
.. versionadded:: NEXT
.. versionadded:: 4.0.0
"""
return self._install_patch(Patch(*args, **kwargs))

Expand Down
2 changes: 1 addition & 1 deletion src/nti/testing/layers/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"""
Test layer support.
.. versionchanged:: NEXT
.. versionchanged:: 4.0.0
This is now a package with sub-modules. Existing imports continue
to work.
Expand Down
2 changes: 1 addition & 1 deletion src/nti/testing/layers/cleanup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
- Garbage collection
- Registered cleanups.
.. versionadded:: NEXT
.. versionadded:: 4.0.0
"""

Expand Down
2 changes: 1 addition & 1 deletion src/nti/testing/layers/postgres.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
There is also support for benchmarking and saving databeses for
later examination.
.. versionadded:: NEXT
.. versionadded:: 4.0.0
The APIs are preliminary and may change.
Expand Down

0 comments on commit 23101f0

Please sign in to comment.