@@ -10,8 +10,8 @@ cmake_minimum_required(VERSION 3.14)
10
10
11
11
project (
12
12
Aedis
13
- VERSION 1.0 .0
14
- DESCRIPTION "An async redis client designed for performance and scalability"
13
+ VERSION 1.1 .0
14
+ DESCRIPTION "A redis client designed for performance and scalability"
15
15
HOMEPAGE_URL "https://mzimbres.github.io/aedis"
16
16
LANGUAGES CXX
17
17
)
@@ -63,11 +63,12 @@ add_executable(serialization examples/serialization.cpp)
63
63
add_executable (subscriber examples/subscriber.cpp)
64
64
add_executable (subscriber_sentinel examples/subscriber_sentinel.cpp)
65
65
add_executable (test_low_level tests/low_level.cpp)
66
- add_executable (low_level_sync tests /low_level_sync.cpp)
66
+ add_executable (low_level_sync examples /low_level_sync.cpp)
67
67
add_executable (test_connection_other tests/connection_other.cpp)
68
68
add_executable (test_connection_connect tests/connection_connect.cpp)
69
69
add_executable (test_connection_push tests/connection_push.cpp)
70
70
add_executable (test_connection_quit tests/connection_quit.cpp)
71
+ add_executable (test_connection_quit_coalesce tests/connection_quit_coalesce.cpp)
71
72
add_executable (test_connection_reconnect tests/connection_reconnect.cpp)
72
73
add_executable (test_connection_tls tests/connection_tls.cpp)
73
74
@@ -77,7 +78,6 @@ target_compile_features(subscriber PUBLIC cxx_std_20)
77
78
target_compile_features (subscriber_sentinel PUBLIC cxx_std_20)
78
79
target_compile_features (test_connection_other PUBLIC cxx_std_20)
79
80
target_compile_features (test_connection_push PUBLIC cxx_std_20)
80
- target_compile_features (test_connection_quit PUBLIC cxx_std_20)
81
81
82
82
target_link_libraries (intro_tls OpenSSL::Crypto OpenSSL::SSL)
83
83
target_link_libraries (test_connection_tls OpenSSL::Crypto OpenSSL::SSL)
@@ -96,6 +96,7 @@ add_test(test_connection_other test_connection_other)
96
96
add_test (test_connection_connect test_connection_connect)
97
97
add_test (test_connection_push test_connection_push)
98
98
add_test (test_connection_quit test_connection_quit)
99
+ add_test (test_connection_quit_coalesce test_connection_quit_coalesce)
99
100
add_test (test_connection_reconnect test_connection_reconnect)
100
101
add_test (test_connection_tls test_connection_tls)
101
102
0 commit comments