Skip to content

Commit

Permalink
Bumped version to 0.8.6
Browse files Browse the repository at this point in the history
Signed-off-by: chandr-andr (Kiselev Aleksandr) <[email protected]>
  • Loading branch information
chandr-andr committed Dec 10, 2024
1 parent d578c0b commit 381bc6f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "psqlpy"
version = "0.8.5"
version = "0.8.6"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
6 changes: 3 additions & 3 deletions python/psqlpy/_internal/extra_types.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ from decimal import Decimal
from ipaddress import IPv4Address, IPv6Address
from uuid import UUID

from typing_extensions import Self
from typing_extensions import Self, TypeAlias

class SmallInt:
"""Represent SmallInt in PostgreSQL and `i16` in Rust."""
Expand Down Expand Up @@ -143,8 +143,8 @@ class PyMacAddr8:
class PyCustomType:
def __init__(self, value: bytes) -> None: ...

Coordinates: typing.TypeAlias = list[int | float] | set[int | float] | tuple[int | float, int | float]
PairsOfCoordinates: typing.TypeAlias = (
Coordinates: TypeAlias = list[int | float] | set[int | float] | tuple[int | float, int | float]
PairsOfCoordinates: TypeAlias = (
list[Coordinates | int | float] | set[Coordinates | int | float] | tuple[Coordinates | int | float, ...]
)

Expand Down

0 comments on commit 381bc6f

Please sign in to comment.