Skip to content

Commit 4599abf

Browse files
authored
Change version to 1.0.0.beta3 (#200)
1 parent c8a2212 commit 4599abf

File tree

2 files changed

+31
-4
lines changed

2 files changed

+31
-4
lines changed

ChangeLog.md

Lines changed: 30 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,41 @@
11
# Changelog
2+
23
All 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

get_version.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
GIT_VER=$(git log|grep ^commit|wc -l|sed -e "s/^ *//")
44
MD5=$(git log|head -1|awk '{printf $2}')
55
TMP_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}
77
echo "#define VERSION_MD5 \"$MD5\"" >> ${TMP_FILE}
88
if [ ! -f $1 ];then
99
mv -f ${TMP_FILE} $1

0 commit comments

Comments
 (0)