Skip to content

Commit

Permalink
Bump version: 4.0.1 → 4.0.2 (#73)
Browse files Browse the repository at this point in the history
  • Loading branch information
mtopolnik authored May 9, 2024
1 parent a749ac3 commit 0a42f25
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 11 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.1
current_version = 4.0.2
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.1)
project(c-questdb-client VERSION 4.0.2)

set(CPACK_PROJECT_NAME ${PROJECT_NAME})
set(CPACK_PROJECT_VERSION ${PROJECT_VERSION})
Expand Down
3 changes: 2 additions & 1 deletion doc/RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ cargo build
## 5. Merge the release branch to master

```bash
git commit -m "Bump version: <current> → <new>"
git commit -a -m "Bump version: <current> → <new>"
git push
```

Replace the `<current>` and `<new>` placeholders!
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.1/questdb/ingress/struct.SenderBuilder.html#method.auth)
and [`tls`](https://docs.rs/questdb-rs/4.0.1/questdb/ingress/struct.SenderBuilder.html#method.tls) methods.
* 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.
* 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.1";
static const char user_agent[] = "questdb/c++/4.0.2";
::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.1"
version = "4.0.2"
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.1"
version = "4.0.2"
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.1/questdb/ingress/) module page.
[`ingress`](https://docs.rs/questdb-rs/4.0.2/questdb/ingress/) module page.

## Crate features

Expand Down

0 comments on commit 0a42f25

Please sign in to comment.