Skip to content

Commit ce7f299

Browse files
committed
Version bump to 0.2.1 [skip ci]
1 parent ce41e34 commit ce7f299

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.1 (unreleased)
1+
## 0.2.1 (2025-01-15)
22

33
- Added `std::span` constructor to `Vector`
44
- Added support for CMake and FetchContent

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.0 LANGUAGES CXX)
3+
project(pgvector VERSION 0.2.1 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.0/include) to your project (supports C++17 and greater).
11+
Add [the headers](https://github.com/pgvector/pgvector-cpp/tree/v0.2.1/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 9cc58de1aae171f26bf72b4196f17018d6488725)
18+
FetchContent_Declare(pgvector GIT_REPOSITORY https://github.com/pgvector/pgvector-cpp.git GIT_TAG v0.2.1)
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.0
2+
* pgvector-cpp v0.2.1
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.0
2+
* pgvector-cpp v0.2.1
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.0
2+
* pgvector-cpp v0.2.1
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.0
2+
* pgvector-cpp v0.2.1
33
* https://github.com/pgvector/pgvector-cpp
44
* MIT License
55
*/

0 commit comments

Comments
 (0)