File tree Expand file tree Collapse file tree 2 files changed +31
-4
lines changed
Expand file tree Collapse file tree 2 files changed +31
-4
lines changed Original file line number Diff line number Diff line change 11# Changelog
2+
23All notable changes to this project will be documented in this file.
34
45## [ Unreleased]
56
6- ## [ 1.0.0-beta2] - 2019-07-10
7+ ## [ 1.0.0-beta3] - 2019-07-28
8+
9+ ### API change list
10+
11+ - None
712
813### Added
914
15+ - Add a README file for examples.
16+ - Add some managers to reduce the size of the HttpAppFrameworkImpl code.
17+ - Add missing wasm ContentType.
18+
19+ ### Changed
20+
21+ - Update the submodule - trantor.
22+ - Optimize processing of HTTP pipelining.
23+
24+ ### Fixed
25+
26+ - Fix an error in the HttpClient class when sending a request using the HEAD method.
27+
28+ ## [ 1.0.0-beta2] - 2019-07-10
29+
30+ ### API change list
31+
1032- Add setBody methods to the HttpRequest class.
33+ - Add the setContentTypeCodeAndCustomString method to the HttpResponse class.
34+
35+ ### Added
36+
1137- Add stress testing command to drogon_ctl.
1238- Add -v, -h parameters to drogon_ctl.
13- - Add the setContentTypeCodeAndCustomString method to the HttpResponse class.
1439
1540### Changed
1641
@@ -26,7 +51,9 @@ All notable changes to this project will be documented in this file.
2651
2752## [ 1.0.0-beta1] - 2019-06-11
2853
29- [ Unreleased ] : https://github.com/an-tao/drogon/compare/v1.0.0-beta2...HEAD
54+ [ Unreleased ] : https://github.com/an-tao/drogon/compare/v1.0.0-beta3...HEAD
55+
56+ [ 1.0.0-beta3 ] : https://github.com/an-tao/drogon/compare/v1.0.0-beta2...v1.0.0-beta3
3057
3158[ 1.0.0-beta2 ] : https://github.com/an-tao/drogon/compare/v1.0.0-beta1...v1.0.0-beta2
3259
Original file line number Diff line number Diff line change 33GIT_VER=$( git log| grep ^commit| wc -l| sed -e " s/^ *//" )
44MD5=$( git log| head -1| awk ' {printf $2}' )
55TMP_FILE=/tmp/version
6- echo " #define VERSION \" 1.0.0.beta2 .$GIT_VER \" " > ${TMP_FILE}
6+ echo " #define VERSION \" 1.0.0.beta3 .$GIT_VER \" " > ${TMP_FILE}
77echo " #define VERSION_MD5 \" $MD5 \" " >> ${TMP_FILE}
88if [ ! -f $1 ]; then
99mv -f ${TMP_FILE} $1
You can’t perform that action at this time.
0 commit comments