Skip to content

Commit 5457061

Browse files
committed
Bump version to 1.5.2
1 parent 9f515fe commit 5457061

File tree

2 files changed

+43
-3
lines changed

2 files changed

+43
-3
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ list(APPEND CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake_modules/)
88

99
set(TRANTOR_MAJOR_VERSION 1)
1010
set(TRANTOR_MINOR_VERSION 5)
11-
set(TRANTOR_PATCH_VERSION 1)
11+
set(TRANTOR_PATCH_VERSION 2)
1212
set(TRANTOR_VERSION
1313
${TRANTOR_MAJOR_VERSION}.${TRANTOR_MINOR_VERSION}.${TRANTOR_PATCH_VERSION})
1414

ChangeLog.md

Lines changed: 42 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,44 @@ All notable changes to this project will be documented in this file.
33

44
## [Unreleased]
55

6+
## [1.5.2] - 2021-10-17
7+
8+
### API changes list
9+
10+
### Changed
11+
12+
- Disable setting SSL Configs when using LibreSSL
13+
14+
- cmake: Use GNUInstallDirs to figure out install dirs
15+
16+
- support HaikuOS
17+
18+
- Improve Error handling for certificates/private keys
19+
20+
- Make c-ares support optional when building
21+
22+
- Use locale.h
23+
24+
- Assert fd >= 0 in updateChannel()
25+
26+
- Add Clang support for -Wall -Wextra -Werror; fix -Wunused-parameter
27+
28+
### Fixed
29+
30+
- Fix a small memory leak
31+
32+
- Fix errors in log macros
33+
34+
- Fix a race condition when TcpClient destroyed before connected
35+
36+
- Fix the error of calling removeAndResetChannel twice
37+
38+
- Fix a bug when EAGAIN on reading sockets
39+
40+
- Fix compilation warnings
41+
42+
- Fix a potential race condition
43+
644
## [1.5.1] - 2021-08-08
745

846
### API changes list
@@ -13,7 +51,7 @@ All notable changes to this project will be documented in this file.
1351

1452
- Disable strict compiler check on Windows with GCC
1553

16-
- Added support for paths containing unicode characters on Windows
54+
- Add support for paths containing unicode characters on Windows
1755

1856
- Add BUILD_DOC cmake option (doxygen)
1957

@@ -326,7 +364,9 @@ All notable changes to this project will be documented in this file.
326364

327365
## [1.0.0-rc1] - 2019-06-11
328366

329-
[Unreleased]: https://github.com/an-tao/trantor/compare/v1.5.1...HEAD
367+
[Unreleased]: https://github.com/an-tao/trantor/compare/v1.5.2...HEAD
368+
369+
[1.5.2]: https://github.com/an-tao/trantor/compare/v1.5.1...v1.5.2
330370

331371
[1.5.1]: https://github.com/an-tao/trantor/compare/v1.5.0...v1.5.1
332372

0 commit comments

Comments
 (0)