Skip to content

Commit c845b08

Browse files
committed
Bumped version to 0.1.4
Signed-off-by: chandr-andr (Kiselev Aleksandr) <chandr@chandr.net>
1 parent 1a92000 commit c845b08

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

otlp_psqlpy/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,10 @@
5353

5454

5555
def _construct_span(
56-
instance: psqlpy.Connection | psqlpy.Transaction | psqlpy.Cursor,
56+
instance: t.Union[psqlpy.Connection, psqlpy.Transaction, psqlpy.Cursor],
5757
query: str,
5858
parameters: t.Sequence[t.Any],
59-
prepared: bool | None = None,
59+
prepared: t.Optional[bool] = None,
6060
) -> dict[str, t.Any]:
6161
"""Get network and database attributes from instance."""
6262
span_attributes = {

otlp_psqlpy/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
__version__ = "0.1.3"
15+
__version__ = "0.1.4"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "otlp-psqlpy"
3-
version = "0.1.3"
3+
version = "0.1.4"
44
description = ""
55
authors = ["chandr-andr (Kiselev Aleksandr) <chandr@chandr.net>"]
66
readme = "README.md"

0 commit comments

Comments
 (0)