Skip to content

Commit 0a42f25

Browse files
authoredMay 9, 2024
Bump version: 4.0.1 → 4.0.2 (#73)
1 parent a749ac3 commit 0a42f25

File tree

9 files changed

+12
-11
lines changed

9 files changed

+12
-11
lines changed
 

‎.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 4.0.1
2+
current_version = 4.0.2
33
commit = False
44
tag = False
55

‎CMakeLists.txt

+1-1
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 4.0.1)
2+
project(c-questdb-client VERSION 4.0.2)
33

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

‎doc/RELEASING.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@ cargo build
3939
## 5. Merge the release branch to master
4040

4141
```bash
42-
git commit -m "Bump version: <current> → <new>"
42+
git commit -a -m "Bump version: <current> → <new>"
43+
git push
4344
```
4445

4546
Replace the `<current>` and `<new>` placeholders!

‎doc/SECURITY.md

+2-2
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/4.0.1/questdb/ingress/struct.SenderBuilder.html#method.auth)
39-
and [`tls`](https://docs.rs/questdb-rs/4.0.1/questdb/ingress/struct.SenderBuilder.html#method.tls) methods.
38+
* Rust: `SenderBuilder`'s [`auth`](https://docs.rs/questdb-rs/4.0.2/questdb/ingress/struct.SenderBuilder.html#method.auth)
39+
and [`tls`](https://docs.rs/questdb-rs/4.0.2/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

+1-1
Original file line numberDiff line numberDiff line change
@@ -745,7 +745,7 @@ namespace questdb::ingress
745745
static inline ::line_sender_utf8 name()
746746
{
747747
// Maintained by .bumpversion.cfg
748-
static const char user_agent[] = "questdb/c++/4.0.1";
748+
static const char user_agent[] = "questdb/c++/4.0.2";
749749
::line_sender_utf8 utf8 = ::line_sender_utf8_assert(
750750
sizeof(user_agent) - 1,
751751
user_agent);

‎questdb-rs-ffi/Cargo.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎questdb-rs-ffi/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "questdb-rs-ffi"
3-
version = "4.0.1"
3+
version = "4.0.2"
44
edition = "2021"
55
publish = false
66

‎questdb-rs/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "questdb-rs"
3-
version = "4.0.1"
3+
version = "4.0.2"
44
edition = "2021"
55
license = "Apache-2.0"
66
description = "QuestDB Client Library for Rust"

‎questdb-rs/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ fn main() -> Result<()> {
4545
## Docs
4646

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

5050
## Crate features
5151

0 commit comments

Comments
 (0)
Failed to load comments.