Skip to content

Commit

Permalink
Preparing release 5.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jamadden committed Jun 11, 2024
1 parent 0f95872 commit 59dbd78
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Changes
=========

5.0.0 (unreleased)
5.0.0 (2024-06-11)
==================

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

version = '5.0.0.dev0'
version = '5.0.0'

entry_points = {
'console_scripts': [
Expand Down
4 changes: 2 additions & 2 deletions src/nti/transactions/loop.py
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ def __init__(
from :meth:`get_transaction_manager_for_call` instead of the default
transaction manager.
.. versionchanged:: NEXT
.. versionchanged:: 5.0.0
Add the *transaction_manager* argument.
"""
self.handler = handler
Expand Down Expand Up @@ -503,7 +503,7 @@ def get_transaction_manager_for_call(self, *args, **kwargs):
with db.open(loop.get_transaction_manager_for_call()) as conn:
...
.. versionadded:: NEXT
.. versionadded:: 5.0.0
"""
# We use the thread-local global/default transaction manager.
# Accessing it directly is a bit faster than going through the wrapping
Expand Down

0 comments on commit 59dbd78

Please sign in to comment.