Skip to content

Commit 8994a09

Browse files
committed
Version bump to 0.4.1 [skip ci]
1 parent 8c9d559 commit 8994a09

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 0.4.1 (unreleased)
1+
## 0.4.1 (2025-05-20)
22

33
- Added `from_f32_slice` function to `HalfVector`
44

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pgvector"
3-
version = "0.4.0"
3+
version = "0.4.1"
44
description = "pgvector support for Rust"
55
repository = "https://github.com/pgvector/pgvector-rust"
66
license = "MIT OR Apache-2.0"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ use pgvector::HalfVector;
296296
let vec = HalfVector::from(vec![f16::from_f32(1.0), f16::from_f32(2.0), f16::from_f32(3.0)]);
297297
```
298298

299-
Or a `f32` slice [unreleased]
299+
Or a `f32` slice
300300

301301
```rust
302302
let vec = HalfVector::from_f32_slice(&[1.0, 2.0, 3.0]);

0 commit comments

Comments
 (0)