Skip to content

Commit

Permalink
Bump version: 4.0.2 → 4.0.3 (#78)
Browse files Browse the repository at this point in the history
  • Loading branch information
jerrinot authored Jul 12, 2024
1 parent a6248a2 commit d328c5d
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 4.0.2
current_version = 4.0.3
commit = False
tag = False

Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.15.0)
project(c-questdb-client VERSION 4.0.2)
project(c-questdb-client VERSION 4.0.3)

set(CPACK_PROJECT_NAME ${PROJECT_NAME})
set(CPACK_PROJECT_VERSION ${PROJECT_VERSION})
Expand Down
4 changes: 2 additions & 2 deletions doc/SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ A few important technical details on TLS:
are managed centrally.

For API usage:
* Rust: `SenderBuilder`'s [`auth`](https://docs.rs/questdb-rs/4.0.2/questdb/ingress/struct.SenderBuilder.html#method.auth)
and [`tls`](https://docs.rs/questdb-rs/4.0.2/questdb/ingress/struct.SenderBuilder.html#method.tls) methods.
* Rust: `SenderBuilder`'s [`auth`](https://docs.rs/questdb-rs/4.0.3/questdb/ingress/struct.SenderBuilder.html#method.auth)
and [`tls`](https://docs.rs/questdb-rs/4.0.3/questdb/ingress/struct.SenderBuilder.html#method.tls) methods.
* C: [examples/line_sender_c_example_auth.c](../examples/line_sender_c_example_auth.c)
* C++: [examples/line_sender_cpp_example_auth.cpp](../examples/line_sender_cpp_example_auth.cpp)
2 changes: 1 addition & 1 deletion include/questdb/ingress/line_sender.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -745,7 +745,7 @@ namespace questdb::ingress
static inline ::line_sender_utf8 name()
{
// Maintained by .bumpversion.cfg
static const char user_agent[] = "questdb/c++/4.0.2";
static const char user_agent[] = "questdb/c++/4.0.3";
::line_sender_utf8 utf8 = ::line_sender_utf8_assert(
sizeof(user_agent) - 1,
user_agent);
Expand Down
4 changes: 2 additions & 2 deletions questdb-rs-ffi/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion questdb-rs-ffi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "questdb-rs-ffi"
version = "4.0.2"
version = "4.0.3"
edition = "2021"
publish = false

Expand Down
2 changes: 1 addition & 1 deletion questdb-rs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "questdb-rs"
version = "4.0.2"
version = "4.0.3"
edition = "2021"
license = "Apache-2.0"
description = "QuestDB Client Library for Rust"
Expand Down
2 changes: 1 addition & 1 deletion questdb-rs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ fn main() -> Result<()> {
## Docs

Most of the client documentation is on the
[`ingress`](https://docs.rs/questdb-rs/4.0.2/questdb/ingress/) module page.
[`ingress`](https://docs.rs/questdb-rs/4.0.3/questdb/ingress/) module page.

## Crate features

Expand Down

0 comments on commit d328c5d

Please sign in to comment.