Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .bumpversion.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tool.bumpversion]
current_version = "5.0.0"
current_version = "5.1.0"
commit = false
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 5.0.0)
project(c-questdb-client VERSION 5.1.0)

set(CPACK_PROJECT_NAME ${PROJECT_NAME})
set(CPACK_PROJECT_VERSION ${PROJECT_VERSION})
Expand Down
6 changes: 3 additions & 3 deletions ci/run_all_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def main():
build_cxx20_dir.glob(f'**/test_line_sender{exe_suffix}')))

system_test_path = pathlib.Path('system_test') / 'test.py'
#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.

run_cmd('cargo', 'test',
'--', '--nocapture', cwd='questdb-rs')
Expand All @@ -65,8 +65,8 @@ def main():
run_cmd('cargo', 'test', cwd='questdb-rs-ffi')
run_cmd(str(test_line_sender_path))
run_cmd(str(test_line_sender_path_CXX20))
#run_cmd('python3', str(system_test_path), 'run', '--versions', qdb_v, '-v')
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')


if __name__ == '__main__':
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/5.0.0/questdb/ingress/struct.SenderBuilder.html#method.auth)
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.
* 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)
2 changes: 1 addition & 1 deletion include/questdb/ingress/line_sender.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -1175,7 +1175,7 @@ class _user_agent
static inline ::line_sender_utf8 name()
{
// Maintained by .bumpversion.cfg
static const char user_agent[] = "questdb/c++/5.0.0";
static const char user_agent[] = "questdb/c++/5.1.0";
::line_sender_utf8 utf8 =
::line_sender_utf8_assert(sizeof(user_agent) - 1, user_agent);
return utf8;
Expand Down
Loading