Skip to content

Commit

Permalink
Bumped version to 0.8.5
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 Nov 19, 2024
1 parent e831c58 commit a7734cd
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion 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.4"
version = "0.8.5"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
5 changes: 5 additions & 0 deletions docs/usage/types/extra_types.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@ All extra types available from Python with mapping to PostgreSQL type and Rust t
| PyLine | LineSegment | Line |
| PyLineSegment | LineSegment | Lseg |
| PyCircle | Circle | Circle |
| PgVector | Vector | Vector |

::: important
To use `Vector` type in PostgreSQL you need to install it - [pgvector](https://github.com/pgvector/pgvector).
:::


## BigInt & Integer & SmallInt & Float32 & Float64
Expand Down
4 changes: 3 additions & 1 deletion docs/usage/types/supported_types.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,11 @@ Here you can find all types supported by `PSQLPy`. If PSQLPy isn't `-`, you can
| Line | PyLine | LINE |
| Line Segment | PyLineSegment | LSEG |
| Circle | PyCircle | CIRCLE |
| PgVector | PgVector | Vector |

::: important
DECIMAL PostgreSQL type isn't supported, use NUMERIC instead.
- DECIMAL PostgreSQL type isn't supported, use NUMERIC instead.
- `Vector` type in PostgreSQL can be used only after installation - [pgvector](https://github.com/pgvector/pgvector).
:::


Expand Down

0 comments on commit a7734cd

Please sign in to comment.