File tree Expand file tree Collapse file tree 2 files changed +26
-2
lines changed Expand file tree Collapse file tree 2 files changed +26
-2
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ list(APPEND CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake_modules/)
8
8
9
9
set (TRANTOR_MAJOR_VERSION 1 )
10
10
set (TRANTOR_MINOR_VERSION 5 )
11
- set (TRANTOR_PATCH_VERSION 4 )
11
+ set (TRANTOR_PATCH_VERSION 5 )
12
12
set (TRANTOR_VERSION
13
13
${TRANTOR_MAJOR_VERSION} .${TRANTOR_MINOR_VERSION}.${TRANTOR_PATCH_VERSION} )
14
14
Original file line number Diff line number Diff line change @@ -3,6 +3,28 @@ All notable changes to this project will be documented in this file.
3
3
4
4
## [ Unreleased]
5
5
6
+ ## [ 1.5.5] - 2022-02-19
7
+
8
+ ### API changes list
9
+
10
+ ### Changed
11
+
12
+ - Move EventLoop::runAfter to a template.
13
+
14
+ - Remove an assertion when removing channels.
15
+
16
+ - Prevent TcpClient::removeConnection call on deleted TcpClient instance.
17
+
18
+ - Wait for loop to exit in EventLoop destructor.
19
+
20
+ - Add r-reference version of set-callback methods to TcpConnectionImpl.
21
+
22
+ ### Fixed
23
+
24
+ - Fix a bug when closing connections on Windows/MacOS.
25
+
26
+ - Fix logger causes if statement mismatch.
27
+
6
28
## [ 1.5.4] - 2021-12-10
7
29
8
30
### API changes list
@@ -390,7 +412,9 @@ All notable changes to this project will be documented in this file.
390
412
391
413
## [ 1.0.0-rc1] - 2019-06-11
392
414
393
- [ Unreleased ] : https://github.com/an-tao/trantor/compare/v1.5.4...HEAD
415
+ [ Unreleased ] : https://github.com/an-tao/trantor/compare/v1.5.5...HEAD
416
+
417
+ [ 1.5.5 ] : https://github.com/an-tao/trantor/compare/v1.5.4...v1.5.5
394
418
395
419
[ 1.5.4 ] : https://github.com/an-tao/trantor/compare/v1.5.3...v1.5.4
396
420
You can’t perform that action at this time.
0 commit comments