Skip to content

Commit

Permalink
Bump version: 3.0.0 → 3.1.0 (#48)
Browse files Browse the repository at this point in the history
  • Loading branch information
amunra authored Nov 23, 2023
1 parent 10f7035 commit ced64a9
Show file tree
Hide file tree
Showing 7 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 = 3.0.0
current_version = 3.1.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.0.0)
project(c-questdb-client VERSION 3.1.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.0.0/questdb/ingress/struct.SenderBuilder.html#method.auth)
and [`tls`](https://docs.rs/questdb-rs/3.0.0/questdb/ingress/struct.SenderBuilder.html#method.tls) methods.
* 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.
* 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)
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.0.0"
version = "3.1.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.0.0"
version = "3.1.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 @@ -6,12 +6,12 @@ To start using `questdb-rs` add it to your `Cargo.toml`:

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

## Docs

See documentation for the [`ingress`](https://docs.rs/questdb-rs/3.0.0/questdb/ingress/) module to insert data into QuestDB via the ILP protocol.
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.

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

Expand Down

0 comments on commit ced64a9

Please sign in to comment.