Skip to content

Commit 3d658fb

Browse files
committed
Version bump to 0.2.4 [skip ci]
1 parent e35f71e commit 3d658fb

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 0.2.4 (unreleased)
1+
## 0.2.4 (2025-09-12)
22

33
- Added `from_string` support for `SparseVector`
44

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cmake_minimum_required(VERSION 3.18)
22

3-
project(pgvector VERSION 0.2.3 LANGUAGES CXX)
3+
project(pgvector VERSION 0.2.4 LANGUAGES CXX)
44

55
include(GNUInstallDirs)
66

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ Supports [libpqxx](https://github.com/jtv/libpqxx)
88

99
## Installation
1010

11-
Add [the headers](https://github.com/pgvector/pgvector-cpp/tree/v0.2.3/include) to your project (supports C++17 and greater).
11+
Add [the headers](https://github.com/pgvector/pgvector-cpp/tree/v0.2.4/include) to your project (supports C++17 and greater).
1212

1313
There is also support for CMake and FetchContent:
1414

1515
```cmake
1616
include(FetchContent)
1717
18-
FetchContent_Declare(pgvector GIT_REPOSITORY https://github.com/pgvector/pgvector-cpp.git GIT_TAG v0.2.3)
18+
FetchContent_Declare(pgvector GIT_REPOSITORY https://github.com/pgvector/pgvector-cpp.git GIT_TAG v0.2.4)
1919
FetchContent_MakeAvailable(pgvector)
2020
2121
target_link_libraries(app PRIVATE pgvector::pgvector)

include/pgvector/halfvec.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* pgvector-cpp v0.2.3
2+
* pgvector-cpp v0.2.4
33
* https://github.com/pgvector/pgvector-cpp
44
* MIT License
55
*/

include/pgvector/pqxx.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* pgvector-cpp v0.2.3
2+
* pgvector-cpp v0.2.4
33
* https://github.com/pgvector/pgvector-cpp
44
* MIT License
55
*/

include/pgvector/sparsevec.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* pgvector-cpp v0.2.3
2+
* pgvector-cpp v0.2.4
33
* https://github.com/pgvector/pgvector-cpp
44
* MIT License
55
*/

include/pgvector/vector.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* pgvector-cpp v0.2.3
2+
* pgvector-cpp v0.2.4
33
* https://github.com/pgvector/pgvector-cpp
44
* MIT License
55
*/

0 commit comments

Comments
 (0)