Skip to content

Commit 8fb6aa2

Browse files
authored
Bump version: 3.1.0 → 4.0.0 (#59)
1 parent 5bc7c6a commit 8fb6aa2

File tree

8 files changed

+11
-11
lines changed

8 files changed

+11
-11
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 3.1.0
2+
current_version = 4.0.0
33
commit = True
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 3.1.0)
2+
project(c-questdb-client VERSION 4.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/3.1.0/questdb/ingress/struct.SenderBuilder.html#method.auth)
39-
and [`tls`](https://docs.rs/questdb-rs/3.1.0/questdb/ingress/struct.SenderBuilder.html#method.tls) methods.
38+
* Rust: `SenderBuilder`'s [`auth`](https://docs.rs/questdb-rs/4.0.0/questdb/ingress/struct.SenderBuilder.html#method.auth)
39+
and [`tls`](https://docs.rs/questdb-rs/4.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
@@ -734,7 +734,7 @@ namespace questdb::ingress
734734
static inline ::line_sender_utf8 name()
735735
{
736736
// Maintained by .bumpversion.cfg
737-
static const char user_agent[] = "questdb/c++/3.1.0";
737+
static const char user_agent[] = "questdb/c++/4.0.0";
738738
::line_sender_utf8 utf8 = ::line_sender_utf8_assert(
739739
sizeof(user_agent) - 1,
740740
user_agent);

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 = "3.1.0"
3+
version = "4.0.0"
44
edition = "2021"
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 = "3.1.0"
3+
version = "4.0.0"
44
edition = "2021"
55
license = "Apache-2.0"
66
description = "QuestDB Client Library for Rust"

questdb-rs/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ To start using `questdb-rs` add it to your `Cargo.toml`:
1313

1414
```toml
1515
[dependencies]
16-
questdb-rs = "3.1.0"
16+
questdb-rs = "4.0.0"
1717
```
1818

1919
## Docs
2020

21-
See documentation for the [`ingress`](https://docs.rs/questdb-rs/3.1.0/questdb/ingress/) module to insert data into QuestDB via the ILP protocol.
21+
See documentation for the [`ingress`](https://docs.rs/questdb-rs/4.0.0/questdb/ingress/) module to insert data into QuestDB via the ILP protocol.
2222

2323
* Latest API docs: [https://docs.rs/questdb-rs/latest/](https://docs.rs/questdb-rs/latest/)
2424

0 commit comments

Comments
 (0)