Skip to content

Commit 381bc6f

Browse files
committed
Bumped version to 0.8.6
Signed-off-by: chandr-andr (Kiselev Aleksandr) <[email protected]>
1 parent d578c0b commit 381bc6f

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

Cargo.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "psqlpy"
3-
version = "0.8.5"
3+
version = "0.8.6"
44
edition = "2021"
55

66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

python/psqlpy/_internal/extra_types.pyi

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ from decimal import Decimal
44
from ipaddress import IPv4Address, IPv6Address
55
from uuid import UUID
66

7-
from typing_extensions import Self
7+
from typing_extensions import Self, TypeAlias
88

99
class SmallInt:
1010
"""Represent SmallInt in PostgreSQL and `i16` in Rust."""
@@ -143,8 +143,8 @@ class PyMacAddr8:
143143
class PyCustomType:
144144
def __init__(self, value: bytes) -> None: ...
145145

146-
Coordinates: typing.TypeAlias = list[int | float] | set[int | float] | tuple[int | float, int | float]
147-
PairsOfCoordinates: typing.TypeAlias = (
146+
Coordinates: TypeAlias = list[int | float] | set[int | float] | tuple[int | float, int | float]
147+
PairsOfCoordinates: TypeAlias = (
148148
list[Coordinates | int | float] | set[Coordinates | int | float] | tuple[Coordinates | int | float, ...]
149149
)
150150

0 commit comments

Comments
 (0)