Skip to content

Commit

Permalink
Updated version in readme [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
ankane committed Oct 19, 2023
1 parent 8fa6a6e commit 948e6a0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Or check out some examples:
Add this line to your application’s `Cargo.toml` under `[dependencies]`:

```toml
pgvector = { version = "0.2", features = ["postgres"] }
pgvector = { version = "0.3", features = ["postgres"] }
```

Enable the extension
Expand Down Expand Up @@ -80,7 +80,7 @@ let embedding: Option<Vector> = row.get(0);
Add this line to your application’s `Cargo.toml` under `[dependencies]`:

```toml
pgvector = { version = "0.2", features = ["sqlx"] }
pgvector = { version = "0.3", features = ["sqlx"] }
```

Enable the extension
Expand Down Expand Up @@ -137,7 +137,7 @@ let embedding: Vector = row.try_get("embedding")?;
Add this line to your application’s `Cargo.toml` under `[dependencies]`:

```toml
pgvector = { version = "0.2", features = ["diesel"] }
pgvector = { version = "0.3", features = ["diesel"] }
```

And add this line to your application’s `diesel.toml` under `[print_schema]`:
Expand Down

0 comments on commit 948e6a0

Please sign in to comment.