Skip to content

Commit 605893d

Browse files
committed
Bump version to 1.5.12
1 parent fee6577 commit 605893d

File tree

2 files changed

+50
-2
lines changed

2 files changed

+50
-2
lines changed

CMakeLists.txt

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

1111
set(TRANTOR_MAJOR_VERSION 1)
1212
set(TRANTOR_MINOR_VERSION 5)
13-
set(TRANTOR_PATCH_VERSION 11)
13+
set(TRANTOR_PATCH_VERSION 12)
1414
set(TRANTOR_VERSION
1515
${TRANTOR_MAJOR_VERSION}.${TRANTOR_MINOR_VERSION}.${TRANTOR_PATCH_VERSION})
1616

ChangeLog.md

Lines changed: 49 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,52 @@ All notable changes to this project will be documented in this file.
44

55
## [Unreleased]
66

7+
## [1.5.12] - 2023-08-20
8+
9+
### API changes list
10+
11+
- Add NetEndian versions of toIp and toIpPort.
12+
13+
- Add setsockopt to TcpClient and TcpServer.
14+
15+
- Support setting max files in AsyncFileLogger.
16+
17+
- Support returning multiple results for dns parsing.
18+
19+
### Changed
20+
21+
- Refactor SSL handling.
22+
23+
- Add ability to use one log file until the size-limit.
24+
25+
- Make the std::string_view work on windows.
26+
27+
- Drop Botan 2 support and support Botan 3.
28+
29+
- Make the getNextLoop method multi-thread safe.
30+
31+
- Add fallback when OpenSSL not providing BLAKE2b.
32+
33+
### Fixed
34+
35+
- Fix override mark.
36+
37+
- Add missing <cstdint> header with GCC 13.
38+
39+
- Fix AresResolver.
40+
41+
- Fix building built-in hashes on Windows.
42+
43+
- Fix MSYS2/Cygwin compatibility issues.
44+
45+
- Fix more build errors on win32/mingw.
46+
47+
- Fix off_t(on windows off_t defined with long, not longlong).
48+
49+
- Fix bug with Trantor::Date timeZoneOffset calculation.
50+
51+
- Fix wrong usage of shared pointer in TcpClient ctor.
52+
753
## [1.5.11] - 2023-03-17
854

955
### API Changes list
@@ -520,7 +566,9 @@ All notable changes to this project will be documented in this file.
520566

521567
## [1.0.0-rc1] - 2019-06-11
522568

523-
[Unreleased]: https://github.com/an-tao/trantor/compare/v1.5.11...HEAD
569+
[Unreleased]: https://github.com/an-tao/trantor/compare/v1.5.12...HEAD
570+
571+
[1.5.12]: https://github.com/an-tao/trantor/compare/v1.5.11...v1.5.12
524572

525573
[1.5.11]: https://github.com/an-tao/trantor/compare/v1.5.10...v1.5.11
526574

0 commit comments

Comments
 (0)