Skip to content

Commit a7734cd

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

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "psqlpy"
3-
version = "0.8.4"
3+
version = "0.8.5"
44
edition = "2021"
55

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

docs/usage/types/extra_types.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,11 @@ All extra types available from Python with mapping to PostgreSQL type and Rust t
2424
| PyLine | LineSegment | Line |
2525
| PyLineSegment | LineSegment | Lseg |
2626
| PyCircle | Circle | Circle |
27+
| PgVector | Vector | Vector |
28+
29+
::: important
30+
To use `Vector` type in PostgreSQL you need to install it - [pgvector](https://github.com/pgvector/pgvector).
31+
:::
2732

2833

2934
## BigInt & Integer & SmallInt & Float32 & Float64

docs/usage/types/supported_types.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,11 @@ Here you can find all types supported by `PSQLPy`. If PSQLPy isn't `-`, you can
4242
| Line | PyLine | LINE |
4343
| Line Segment | PyLineSegment | LSEG |
4444
| Circle | PyCircle | CIRCLE |
45+
| PgVector | PgVector | Vector |
4546

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

5052

0 commit comments

Comments
 (0)