Skip to content

Commit b3f08fa

Browse files
authored
Bump version: 5.0.0 → 5.1.0 (#120)
1 parent 8abdaf0 commit b3f08fa

File tree

9 files changed

+197
-137
lines changed

9 files changed

+197
-137
lines changed

.bumpversion.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tool.bumpversion]
2-
current_version = "5.0.0"
2+
current_version = "5.1.0"
33
commit = false
44
tag = false
55

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
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 5.0.0)
2+
project(c-questdb-client VERSION 5.1.0)
33

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

ci/run_all_tests.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def main():
4343
build_cxx20_dir.glob(f'**/test_line_sender{exe_suffix}')))
4444

4545
system_test_path = pathlib.Path('system_test') / 'test.py'
46-
#qdb_v = '8.2.3' # The version of QuestDB we'll test against.
46+
qdb_v = '9.0.3' # The version of QuestDB we'll test against.
4747

4848
run_cmd('cargo', 'test',
4949
'--', '--nocapture', cwd='questdb-rs')
@@ -65,8 +65,8 @@ def main():
6565
run_cmd('cargo', 'test', cwd='questdb-rs-ffi')
6666
run_cmd(str(test_line_sender_path))
6767
run_cmd(str(test_line_sender_path_CXX20))
68-
#run_cmd('python3', str(system_test_path), 'run', '--versions', qdb_v, '-v')
69-
run_cmd('python3', str(system_test_path), 'run', '--repo', './questdb', '-v')
68+
run_cmd('python3', str(system_test_path), 'run', '--versions', qdb_v, '-v')
69+
#run_cmd('python3', str(system_test_path), 'run', '--repo', './questdb', '-v')
7070

7171

7272
if __name__ == '__main__':

doc/SECURITY.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ A few important technical details on TLS:
3535
are managed centrally.
3636

3737
For API usage:
38-
* Rust: `SenderBuilder`'s [`auth`](https://docs.rs/questdb-rs/5.0.0/questdb/ingress/struct.SenderBuilder.html#method.auth)
39-
and [`tls`](https://docs.rs/questdb-rs/5.0.0/questdb/ingress/struct.SenderBuilder.html#method.tls) methods.
38+
* Rust: `SenderBuilder`'s [`auth`](https://docs.rs/questdb-rs/5.1.0/questdb/ingress/struct.SenderBuilder.html#method.auth)
39+
and [`tls`](https://docs.rs/questdb-rs/5.1.0/questdb/ingress/struct.SenderBuilder.html#method.tls) methods.
4040
* C: [examples/line_sender_c_example_auth.c](../examples/line_sender_c_example_auth.c)
4141
* C++: [examples/line_sender_cpp_example_auth.cpp](../examples/line_sender_cpp_example_auth.cpp)

include/questdb/ingress/line_sender.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1175,7 +1175,7 @@ class _user_agent
11751175
static inline ::line_sender_utf8 name()
11761176
{
11771177
// Maintained by .bumpversion.cfg
1178-
static const char user_agent[] = "questdb/c++/5.0.0";
1178+
static const char user_agent[] = "questdb/c++/5.1.0";
11791179
::line_sender_utf8 utf8 =
11801180
::line_sender_utf8_assert(sizeof(user_agent) - 1, user_agent);
11811181
return utf8;

0 commit comments

Comments
 (0)