We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8abdaf0 commit b3f08faCopy full SHA for b3f08fa
.bumpversion.toml
@@ -1,5 +1,5 @@
1
[tool.bumpversion]
2
-current_version = "5.0.0"
+current_version = "5.1.0"
3
commit = false
4
tag = false
5
CMakeLists.txt
cmake_minimum_required(VERSION 3.15.0)
-project(c-questdb-client VERSION 5.0.0)
+project(c-questdb-client VERSION 5.1.0)
set(CPACK_PROJECT_NAME ${PROJECT_NAME})
set(CPACK_PROJECT_VERSION ${PROJECT_VERSION})
ci/run_all_tests.py
@@ -43,7 +43,7 @@ def main():
43
build_cxx20_dir.glob(f'**/test_line_sender{exe_suffix}')))
44
45
system_test_path = pathlib.Path('system_test') / 'test.py'
46
- #qdb_v = '8.2.3' # The version of QuestDB we'll test against.
+ qdb_v = '9.0.3' # The version of QuestDB we'll test against.
47
48
run_cmd('cargo', 'test',
49
'--', '--nocapture', cwd='questdb-rs')
@@ -65,8 +65,8 @@ def main():
65
run_cmd('cargo', 'test', cwd='questdb-rs-ffi')
66
run_cmd(str(test_line_sender_path))
67
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')
+ run_cmd('python3', str(system_test_path), 'run', '--versions', qdb_v, '-v')
+ #run_cmd('python3', str(system_test_path), 'run', '--repo', './questdb', '-v')
70
71
72
if __name__ == '__main__':
doc/SECURITY.md
@@ -35,7 +35,7 @@ A few important technical details on TLS:
35
are managed centrally.
36
37
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.
+* Rust: `SenderBuilder`'s [`auth`](https://docs.rs/questdb-rs/5.1.0/questdb/ingress/struct.SenderBuilder.html#method.auth)
+ and [`tls`](https://docs.rs/questdb-rs/5.1.0/questdb/ingress/struct.SenderBuilder.html#method.tls) methods.
40
* C: [examples/line_sender_c_example_auth.c](../examples/line_sender_c_example_auth.c)
41
* C++: [examples/line_sender_cpp_example_auth.cpp](../examples/line_sender_cpp_example_auth.cpp)
include/questdb/ingress/line_sender.hpp
@@ -1175,7 +1175,7 @@ class _user_agent
1175
static inline ::line_sender_utf8 name()
1176
{
1177
// Maintained by .bumpversion.cfg
1178
- static const char user_agent[] = "questdb/c++/5.0.0";
+ static const char user_agent[] = "questdb/c++/5.1.0";
1179
::line_sender_utf8 utf8 =
1180
::line_sender_utf8_assert(sizeof(user_agent) - 1, user_agent);
1181
return utf8;
0 commit comments