Skip to content

Commit 34076d4

Browse files
committed
Release v6.1.0
1 parent 9c791e1 commit 34076d4

File tree

3 files changed

+22
-3
lines changed

3 files changed

+22
-3
lines changed

CHANGES.rst

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,16 @@ Change History
33
==============
44

55

6-
6.1.0 (TBD)
6+
6.1.0 (2024-08-17)
77
------------------
88

99
New features:
1010

1111
- `Issue #11`_/`Pull #12`_: Support Oracle named parameters enclosed in double quotes (style `named_oracle`).
1212

13+
Improvements:
14+
15+
- Support Python 3.13.
1316

1417
.. _`Issue #11`: https://github.com/cpburnz/python-sqlparams/issues/11
1518
.. _`Pull #12`: https://github.com/cpburnz/python-sqlparams/pull/12

README-dist.rst

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,21 @@ Change History
106106
==============
107107

108108

109+
6.1.0 (2024-08-17)
110+
------------------
111+
112+
New features:
113+
114+
- `Issue #11`_/`Pull #12`_: Support Oracle named parameters enclosed in double quotes (style `named_oracle`).
115+
116+
Improvements:
117+
118+
- Support Python 3.13.
119+
120+
.. _`Issue #11`: https://github.com/cpburnz/python-sqlparams/issues/11
121+
.. _`Pull #12`: https://github.com/cpburnz/python-sqlparams/pull/12
122+
123+
109124
6.0.1 (2023-12-09)
110125
------------------
111126

sqlparams/_meta.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"""
44

55
__author__ = "Caleb P. Burns"
6-
__copyright__ = "Copyright © 2012-2023 by Caleb P. Burns"
6+
__copyright__ = "Copyright © 2012-2024 by Caleb P. Burns"
77
__credits__ = [
88
"khomyakov42 <https://github.com/khomyakov42>",
99
"pedermoller <https://github.com/pedermoller>",
@@ -12,6 +12,7 @@
1212
"kesmit13 <https://github.com/kesmit13>",
1313
"Cnoor0171 <https://github.com/Cnoor0171>",
1414
"sergey-shambir <https://github.com/sergey-shambir>",
15+
"dedabob <https://github.com/dedabob>",
1516
]
1617
__license__ = "MIT License"
17-
__version__ = "6.0.1"
18+
__version__ = "6.1.0"

0 commit comments

Comments
 (0)