Skip to content

Bump version: 3.1.0 → 4.0.0 #59

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 = 3.1.0
current_version = 4.0.0
commit = True
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 3.1.0)
project(c-questdb-client VERSION 4.0.0)

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/3.1.0/questdb/ingress/struct.SenderBuilder.html#method.auth)
and [`tls`](https://docs.rs/questdb-rs/3.1.0/questdb/ingress/struct.SenderBuilder.html#method.tls) methods.
* Rust: `SenderBuilder`'s [`auth`](https://docs.rs/questdb-rs/4.0.0/questdb/ingress/struct.SenderBuilder.html#method.auth)
and [`tls`](https://docs.rs/questdb-rs/4.0.0/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 @@ -734,7 +734,7 @@ namespace questdb::ingress
static inline ::line_sender_utf8 name()
{
// Maintained by .bumpversion.cfg
static const char user_agent[] = "questdb/c++/3.1.0";
static const char user_agent[] = "questdb/c++/4.0.0";
::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 = "3.1.0"
version = "4.0.0"
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 = "3.1.0"
version = "4.0.0"
edition = "2021"
license = "Apache-2.0"
description = "QuestDB Client Library for Rust"
Expand Down
4 changes: 2 additions & 2 deletions questdb-rs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ To start using `questdb-rs` add it to your `Cargo.toml`:

```toml
[dependencies]
questdb-rs = "3.1.0"
questdb-rs = "4.0.0"
```

## Docs

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.
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.

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

Expand Down