Skip to content

Commit 05d9ada

Browse files
authored
Bump version: 5.1.0 → 6.0.0 (#125)
1 parent 791b58d commit 05d9ada

File tree

8 files changed

+18
-18
lines changed

8 files changed

+18
-18
lines changed

.bumpversion.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tool.bumpversion]
2-
current_version = "5.1.0"
2+
current_version = "6.0.0"
33
commit = false
44
tag = false
55

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
cmake_minimum_required(VERSION 3.15.0)
2-
project(c-questdb-client VERSION 5.1.0)
2+
project(c-questdb-client VERSION 6.0.0)
33

44
set(CPACK_PROJECT_NAME ${PROJECT_NAME})
55
set(CPACK_PROJECT_VERSION ${PROJECT_VERSION})

doc/SECURITY.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ A few important technical details on TLS:
3535
are managed centrally.
3636

3737
For API usage:
38-
* Rust: `SenderBuilder`'s [`auth`](https://docs.rs/questdb-rs/5.1.0/questdb/ingress/struct.SenderBuilder.html#method.auth)
39-
and [`tls`](https://docs.rs/questdb-rs/5.1.0/questdb/ingress/struct.SenderBuilder.html#method.tls) methods.
38+
* Rust: `SenderBuilder`'s [`auth`](https://docs.rs/questdb-rs/6.0.0/questdb/ingress/struct.SenderBuilder.html#method.auth)
39+
and [`tls`](https://docs.rs/questdb-rs/6.0.0/questdb/ingress/struct.SenderBuilder.html#method.tls) methods.
4040
* C: [examples/line_sender_c_example_auth.c](../examples/line_sender_c_example_auth.c)
4141
* C++: [examples/line_sender_cpp_example_auth.cpp](../examples/line_sender_cpp_example_auth.cpp)

include/questdb/ingress/line_sender.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1175,7 +1175,7 @@ class _user_agent
11751175
static inline ::line_sender_utf8 name()
11761176
{
11771177
// Maintained by .bumpversion.cfg
1178-
static const char user_agent[] = "questdb/c++/5.1.0";
1178+
static const char user_agent[] = "questdb/c++/6.0.0";
11791179
::line_sender_utf8 utf8 =
11801180
::line_sender_utf8_assert(sizeof(user_agent) - 1, user_agent);
11811181
return utf8;

questdb-rs-ffi/Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

questdb-rs-ffi/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "questdb-rs-ffi"
3-
version = "5.1.0"
3+
version = "6.0.0"
44
edition = "2024"
55
publish = false
66

questdb-rs/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "questdb-rs"
3-
version = "5.1.0"
3+
version = "6.0.0"
44
edition = "2024"
55
license = "Apache-2.0"
66
description = "QuestDB Client Library for Rust"

questdb-rs/README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -70,21 +70,21 @@ fn main() -> Result<()> {
7070
## Docs
7171

7272
Most of the client documentation is on the
73-
[`ingress`](https://docs.rs/questdb-rs/5.1.0/questdb/ingress/) module page.
73+
[`ingress`](https://docs.rs/questdb-rs/6.0.0/questdb/ingress/) module page.
7474

7575
## Examples
7676

77-
A selection of usage examples is available in the [examples directory](https://github.com/questdb/c-questdb-client/tree/5.1.0/questdb-rs/examples):
77+
A selection of usage examples is available in the [examples directory](https://github.com/questdb/c-questdb-client/tree/6.0.0/questdb-rs/examples):
7878

7979
| Example | Description |
8080
|---------|-------------|
81-
| [`basic.rs`](https://github.com/questdb/c-questdb-client/blob/5.1.0/questdb-rs/examples/basic.rs) | Minimal TCP ingestion example; shows basic row and array ingestion. |
82-
| [`auth.rs`](https://github.com/questdb/c-questdb-client/blob/5.1.0/questdb-rs/examples/auth.rs) | Adds authentication (user/password, token) to basic ingestion. |
83-
| [`auth_tls.rs`](https://github.com/questdb/c-questdb-client/blob/5.1.0/questdb-rs/examples/auth_tls.rs) | Like `auth.rs`, but uses TLS for encrypted TCP connections. |
84-
| [`from_conf.rs`](https://github.com/questdb/c-questdb-client/blob/5.1.0/questdb-rs/examples/from_conf.rs) | Configures client via connection string instead of builder pattern. |
85-
| [`from_env.rs`](https://github.com/questdb/c-questdb-client/blob/5.1.0/questdb-rs/examples/from_env.rs) | Reads config from `QDB_CLIENT_CONF` environment variable. |
86-
| [`http.rs`](https://github.com/questdb/c-questdb-client/blob/5.1.0/questdb-rs/examples/http.rs) | Uses HTTP transport and demonstrates array ingestion with `ndarray`. |
87-
| [`protocol_version.rs`](https://github.com/questdb/c-questdb-client/blob/5.1.0/questdb-rs/examples/protocol_version.rs) | Shows protocol version selection and feature differences (e.g. arrays). |
81+
| [`basic.rs`](https://github.com/questdb/c-questdb-client/blob/6.0.0/questdb-rs/examples/basic.rs) | Minimal TCP ingestion example; shows basic row and array ingestion. |
82+
| [`auth.rs`](https://github.com/questdb/c-questdb-client/blob/6.0.0/questdb-rs/examples/auth.rs) | Adds authentication (user/password, token) to basic ingestion. |
83+
| [`auth_tls.rs`](https://github.com/questdb/c-questdb-client/blob/6.0.0/questdb-rs/examples/auth_tls.rs) | Like `auth.rs`, but uses TLS for encrypted TCP connections. |
84+
| [`from_conf.rs`](https://github.com/questdb/c-questdb-client/blob/6.0.0/questdb-rs/examples/from_conf.rs) | Configures client via connection string instead of builder pattern. |
85+
| [`from_env.rs`](https://github.com/questdb/c-questdb-client/blob/6.0.0/questdb-rs/examples/from_env.rs) | Reads config from `QDB_CLIENT_CONF` environment variable. |
86+
| [`http.rs`](https://github.com/questdb/c-questdb-client/blob/6.0.0/questdb-rs/examples/http.rs) | Uses HTTP transport and demonstrates array ingestion with `ndarray`. |
87+
| [`protocol_version.rs`](https://github.com/questdb/c-questdb-client/blob/6.0.0/questdb-rs/examples/protocol_version.rs) | Shows protocol version selection and feature differences (e.g. arrays). |
8888

8989
## Crate features
9090

0 commit comments

Comments
 (0)