Skip to content

Commit da7f065

Browse files
committed
Bump version to 1.9.3
1 parent aa04d33 commit da7f065

3 files changed

Lines changed: 51 additions & 3 deletions

File tree

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ CMAKE_DEPENDENT_OPTION(USE_SPDLOG "Allow using the spdlog logging library" OFF "
2424

2525
set(DROGON_MAJOR_VERSION 1)
2626
set(DROGON_MINOR_VERSION 9)
27-
set(DROGON_PATCH_VERSION 2)
27+
set(DROGON_PATCH_VERSION 3)
2828
set(DROGON_VERSION
2929
${DROGON_MAJOR_VERSION}.${DROGON_MINOR_VERSION}.${DROGON_PATCH_VERSION})
3030
set(DROGON_VERSION_STRING "${DROGON_VERSION}")

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.9.3] - 2024-02-09
8+
9+
### API changes list
10+
11+
- Added getParameter() and getOptionalParameter().
12+
13+
- Change drogon::MultiPartParser's parameters data type.
14+
15+
- Use std::string_view for WebSockets.
16+
17+
### Changed
18+
19+
- Add support for gentoo linux, dev-db/mariadb contains mysql.
20+
21+
- Introduce cpplint to the CI.
22+
23+
- Enable readability/alt_tokens for cpplint.
24+
25+
- Use clang-format-17.
26+
27+
- Add newline at EOF.
28+
29+
- Enable readability/inheritance for cpplint.
30+
31+
- Enable build/explicit_make_pair for cpplint.
32+
33+
- Enable build/include_order for cpplint.
34+
35+
- Enable build/header_guard for cpplint.
36+
37+
- Enable build/storage_class for cpplint.
38+
39+
- Enable readability/multiline_string for cpplint.
40+
41+
- Alias the safe hashmap template.
42+
43+
- Simplify traits in utils.
44+
45+
- Enhancement: extend drogon::ContentType for file handling.
46+
47+
### Fixed
48+
49+
- Fix a wrong place of return.
50+
51+
- Fix drogon::util::fromString().
52+
753
## [1.9.2] - 2024-01-18
854

955
### API changes list
@@ -1575,7 +1621,9 @@ All notable changes to this project will be documented in this file.
15751621

15761622
## [1.0.0-beta1] - 2019-06-11
15771623

1578-
[Unreleased]: https://github.com/an-tao/drogon/compare/v1.9.2...HEAD
1624+
[Unreleased]: https://github.com/an-tao/drogon/compare/v1.9.3...HEAD
1625+
1626+
[1.9.3]: https://github.com/an-tao/drogon/compare/v1.9.2...v1.9.3
15791627

15801628
[1.9.2]: https://github.com/an-tao/drogon/compare/v1.9.1...v1.9.2
15811629

0 commit comments

Comments
 (0)