9 files changed +12
-11
lines changed Original file line number Diff line number Diff line change 1
1
[bumpversion]
2
- current_version = 4.0.1
2
+ current_version = 4.0.2
3
3
commit = False
4
4
tag = False
5
5
Original file line number Diff line number Diff line change 1
1
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 )
3
3
4
4
set (CPACK_PROJECT_NAME ${PROJECT_NAME} )
5
5
set (CPACK_PROJECT_VERSION ${PROJECT_VERSION} )
Original file line number Diff line number Diff line change @@ -39,7 +39,8 @@ cargo build
39
39
## 5. Merge the release branch to master
40
40
41
41
``` bash
42
- git commit -m " Bump version: <current> → <new>"
42
+ git commit -a -m " Bump version: <current> → <new>"
43
+ git push
43
44
```
44
45
45
46
Replace the ` <current> ` and ` <new> ` placeholders!
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ A few important technical details on TLS:
35
35
are managed centrally.
36
36
37
37
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.
40
40
* C: [ examples/line_sender_c_example_auth.c] ( ../examples/line_sender_c_example_auth.c )
41
41
* C++: [ examples/line_sender_cpp_example_auth.cpp] ( ../examples/line_sender_cpp_example_auth.cpp )
Original file line number Diff line number Diff line change @@ -745,7 +745,7 @@ namespace questdb::ingress
745
745
static inline ::line_sender_utf8 name ()
746
746
{
747
747
// 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 " ;
749
749
::line_sender_utf8 utf8 = ::line_sender_utf8_assert (
750
750
sizeof (user_agent) - 1 ,
751
751
user_agent);
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " questdb-rs-ffi"
3
- version = " 4.0.1 "
3
+ version = " 4.0.2 "
4
4
edition = " 2021"
5
5
publish = false
6
6
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " questdb-rs"
3
- version = " 4.0.1 "
3
+ version = " 4.0.2 "
4
4
edition = " 2021"
5
5
license = " Apache-2.0"
6
6
description = " QuestDB Client Library for Rust"
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ fn main() -> Result<()> {
45
45
## Docs
46
46
47
47
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.
49
49
50
50
## Crate features
51
51
0 commit comments