Skip to content

Commit

Permalink
build: New 2.1.1 release. (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
amunra authored Oct 25, 2022
1 parent ca828a1 commit 2cd4e7f
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 = 2.1.0
current_version = 2.1.1
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 2.1.0)
project(c-questdb-client VERSION 2.1.1)

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 @@ -25,7 +25,7 @@ The `tls_certs` directory of this project contains tests certificates, its
[README](../tls_certs/README.md) page describes generating your own certs.

For API usage:
* Rust: `SenderBuilder`'s [`auth`](https://docs.rs/questdb-rs/2.1.0/questdb/ingress/struct.SenderBuilder.html#method.auth)
and [`tls`](https://docs.rs/questdb-rs/2.1.0/questdb/ingress/struct.SenderBuilder.html#method.tls) methods.
* Rust: `SenderBuilder`'s [`auth`](https://docs.rs/questdb-rs/2.1.1/questdb/ingress/struct.SenderBuilder.html#method.auth)
and [`tls`](https://docs.rs/questdb-rs/2.1.1/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 = "2.1.0"
version = "2.1.1"
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 = "2.1.0"
version = "2.1.1"
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 = "2.1.0"
questdb-rs = "2.1.1"
```

## Docs

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

Please sign in to comment.