Bump version to 1.8.1
This commit is contained in:
parent
4d63475203
commit
875bca0a86
|
@ -29,7 +29,7 @@ CMAKE_DEPENDENT_OPTION(BUILD_REDIS "Build with redis support" ON "BUILD_ORM" OFF
|
|||
|
||||
set(DROGON_MAJOR_VERSION 1)
|
||||
set(DROGON_MINOR_VERSION 8)
|
||||
set(DROGON_PATCH_VERSION 0)
|
||||
set(DROGON_PATCH_VERSION 1)
|
||||
set(DROGON_VERSION
|
||||
${DROGON_MAJOR_VERSION}.${DROGON_MINOR_VERSION}.${DROGON_PATCH_VERSION})
|
||||
set(DROGON_VERSION_STRING "${DROGON_VERSION}")
|
||||
|
|
30
ChangeLog.md
30
ChangeLog.md
|
@ -4,7 +4,31 @@ All notable changes to this project will be documented in this file.
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## [1.8.0] - 2022-07-09
|
||||
## [1.8.1] - 2022-09-25
|
||||
|
||||
### API changes list
|
||||
|
||||
- Support redis subscription.
|
||||
|
||||
### Changed
|
||||
|
||||
- Remove redundant member functions of drogon::Task.
|
||||
|
||||
- Small patches on orm_lib.
|
||||
|
||||
- Add support for the string_view type to SqlBinder in orm.
|
||||
|
||||
### Fixed
|
||||
|
||||
- Fix a conflict of ssize_t type with hiredis.
|
||||
|
||||
- Fix a test bug when clients start before servers.
|
||||
|
||||
- Fix model template file Unreachable code.
|
||||
|
||||
- Use the mysql_library_end() function to avoid memory leaks.
|
||||
|
||||
## [1.8.0] - 2022-09-01
|
||||
|
||||
### API changes list
|
||||
|
||||
|
@ -1165,7 +1189,9 @@ All notable changes to this project will be documented in this file.
|
|||
|
||||
## [1.0.0-beta1] - 2019-06-11
|
||||
|
||||
[Unreleased]: https://github.com/an-tao/drogon/compare/v1.8.0...HEAD
|
||||
[Unreleased]: https://github.com/an-tao/drogon/compare/v1.8.1...HEAD
|
||||
|
||||
[1.8.1]: https://github.com/an-tao/drogon/compare/v1.8.0...v1.8.1
|
||||
|
||||
[1.8.0]: https://github.com/an-tao/drogon/compare/v1.7.5...v1.8.0
|
||||
|
||||
|
|
2
trantor
2
trantor
|
@ -1 +1 @@
|
|||
Subproject commit 6578d27f14423f3733c977a3aaec2a543483a810
|
||||
Subproject commit 77ed7a6a58591b7c7f54d93ce55e725a19be462b
|
Loading…
Reference in New Issue