From dadcf0edb6314037d8b056f1ddc42a6c2eee4212 Mon Sep 17 00:00:00 2001 From: Ivan Baidakou Date: Sat, 29 Jul 2017 21:32:59 +0300 Subject: [PATCH] Improve documentation --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index 1da38e7e..7a15ab9f 100644 --- a/README.md +++ b/README.md @@ -19,6 +19,17 @@ Boost::ASIO low-level redis client (connector) ### 0.03 - improved protocol parser (no memory allocations during input stream validity check) +- more detailed information in `protocol_error_t` +- added async `incr` speed test example +- [small API breakage] `positive_parse_result_t` was enriched with parcing policy; +now instead of `positive_parse_result_t` should be written: + +```cpp +using Policy = r::parsing_policy::keep_result; +using result_t = r::parse_result_mapper_t; +``` +- [small API breakage] `protocol_error_t` instead of `std::string what` member +now contains `boost::system::error_code code` ### 0.02 - added windows support