Skip to content

Commit b2c19df

Browse files
committed
Documentation improvements.
1 parent 61f9a29 commit b2c19df

24 files changed

+520
-479
lines changed

BUILD_STATUS.md

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Branch | GH Actions | codecov.io |
2+
:-------------: | ---------- | ---------- |
3+
[`master`](https://github.com/mzimbres/aedis/tree/master) | [![CI](https://github.com/mzimbres/aedis/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/mzimbres/aedis/actions/workflows/ci.yml) | [![codecov](https://codecov.io/gh/mzimbres/aedis/branch/master/graph/badge.svg)](https://codecov.io/gh/mzimbres/aedis/branch/master)
4+

CHANGELOG.md

-157
This file was deleted.

CMakeLists.txt

+5-4
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ cmake_minimum_required(VERSION 3.14)
1010

1111
project(
1212
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"
1515
HOMEPAGE_URL "https://mzimbres.github.io/aedis"
1616
LANGUAGES CXX
1717
)
@@ -63,11 +63,12 @@ add_executable(serialization examples/serialization.cpp)
6363
add_executable(subscriber examples/subscriber.cpp)
6464
add_executable(subscriber_sentinel examples/subscriber_sentinel.cpp)
6565
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)
6767
add_executable(test_connection_other tests/connection_other.cpp)
6868
add_executable(test_connection_connect tests/connection_connect.cpp)
6969
add_executable(test_connection_push tests/connection_push.cpp)
7070
add_executable(test_connection_quit tests/connection_quit.cpp)
71+
add_executable(test_connection_quit_coalesce tests/connection_quit_coalesce.cpp)
7172
add_executable(test_connection_reconnect tests/connection_reconnect.cpp)
7273
add_executable(test_connection_tls tests/connection_tls.cpp)
7374

@@ -77,7 +78,6 @@ target_compile_features(subscriber PUBLIC cxx_std_20)
7778
target_compile_features(subscriber_sentinel PUBLIC cxx_std_20)
7879
target_compile_features(test_connection_other PUBLIC cxx_std_20)
7980
target_compile_features(test_connection_push PUBLIC cxx_std_20)
80-
target_compile_features(test_connection_quit PUBLIC cxx_std_20)
8181

8282
target_link_libraries(intro_tls OpenSSL::Crypto OpenSSL::SSL)
8383
target_link_libraries(test_connection_tls OpenSSL::Crypto OpenSSL::SSL)
@@ -96,6 +96,7 @@ add_test(test_connection_other test_connection_other)
9696
add_test(test_connection_connect test_connection_connect)
9797
add_test(test_connection_push test_connection_push)
9898
add_test(test_connection_quit test_connection_quit)
99+
add_test(test_connection_quit_coalesce test_connection_quit_coalesce)
99100
add_test(test_connection_reconnect test_connection_reconnect)
100101
add_test(test_connection_tls test_connection_tls)
101102

0 commit comments

Comments
 (0)