Skip to content

Commit ad3776e

Browse files
authoredJan 4, 2023
Bump version: 2.1.2 → 2.1.3 (#35)
1 parent 3ee23c8 commit ad3776e

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed
 

‎.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 2.1.2
2+
current_version = 2.1.3
33
commit = True
44
tag = False
55

‎CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
cmake_minimum_required(VERSION 3.15.0)
2-
project(c-questdb-client VERSION 2.1.2)
2+
project(c-questdb-client VERSION 2.1.3)
33

44
set(CPACK_PROJECT_NAME ${PROJECT_NAME})
55
set(CPACK_PROJECT_VERSION ${PROJECT_VERSION})

‎doc/SECURITY.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ The `tls_certs` directory of this project contains tests certificates, its
2525
[README](../tls_certs/README.md) page describes generating your own certs.
2626

2727
For API usage:
28-
* Rust: `SenderBuilder`'s [`auth`](https://docs.rs/questdb-rs/2.1.2/questdb/ingress/struct.SenderBuilder.html#method.auth)
29-
and [`tls`](https://docs.rs/questdb-rs/2.1.2/questdb/ingress/struct.SenderBuilder.html#method.tls) methods.
28+
* Rust: `SenderBuilder`'s [`auth`](https://docs.rs/questdb-rs/2.1.3/questdb/ingress/struct.SenderBuilder.html#method.auth)
29+
and [`tls`](https://docs.rs/questdb-rs/2.1.3/questdb/ingress/struct.SenderBuilder.html#method.tls) methods.
3030
* C: [examples/line_sender_c_example_auth.c](../examples/line_sender_c_example_auth.c)
3131
* C++: [examples/line_sender_cpp_example_auth.cpp](../examples/line_sender_cpp_example_auth.cpp)

‎questdb-rs-ffi/Cargo.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎questdb-rs-ffi/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "questdb-rs-ffi"
3-
version = "2.1.2"
3+
version = "2.1.3"
44
edition = "2021"
55
publish = false
66

‎questdb-rs/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "questdb-rs"
3-
version = "2.1.2"
3+
version = "2.1.3"
44
edition = "2021"
55
license = "Apache-2.0"
66
description = "QuestDB Client Library for Rust"

‎questdb-rs/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ To start using `questdb-rs` add it to your `Cargo.toml`:
66

77
```toml
88
[dependencies]
9-
questdb-rs = "2.1.2"
9+
questdb-rs = "2.1.3"
1010
```
1111

1212
## Docs
1313

14-
See documentation for the [`ingress`](https://docs.rs/questdb-rs/2.1.2/questdb/ingress/) module to insert data into QuestDB via the ILP protocol.
14+
See documentation for the [`ingress`](https://docs.rs/questdb-rs/2.1.3/questdb/ingress/) module to insert data into QuestDB via the ILP protocol.
1515

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

0 commit comments

Comments
 (0)
Failed to load comments.