Skip to content

Commit

Permalink
Change version to 1.0.0.beta3 (drogonframework#200)
Browse files Browse the repository at this point in the history
  • Loading branch information
an-tao authored Jul 28, 2019
1 parent c8a2212 commit 4599abf
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 4 deletions.
33 changes: 30 additions & 3 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,41 @@
# Changelog

All notable changes to this project will be documented in this file.

## [Unreleased]

## [1.0.0-beta2] - 2019-07-10
## [1.0.0-beta3] - 2019-07-28

### API change list

- None

### Added

- Add a README file for examples.
- Add some managers to reduce the size of the HttpAppFrameworkImpl code.
- Add missing wasm ContentType.

### Changed

- Update the submodule - trantor.
- Optimize processing of HTTP pipelining.

### Fixed

- Fix an error in the HttpClient class when sending a request using the HEAD method.

## [1.0.0-beta2] - 2019-07-10

### API change list

- Add setBody methods to the HttpRequest class.
- Add the setContentTypeCodeAndCustomString method to the HttpResponse class.

### Added

- Add stress testing command to drogon_ctl.
- Add -v, -h parameters to drogon_ctl.
- Add the setContentTypeCodeAndCustomString method to the HttpResponse class.

### Changed

Expand All @@ -26,7 +51,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.0.0-beta2...HEAD
[Unreleased]: https://github.com/an-tao/drogon/compare/v1.0.0-beta3...HEAD

[1.0.0-beta3]: https://github.com/an-tao/drogon/compare/v1.0.0-beta2...v1.0.0-beta3

[1.0.0-beta2]: https://github.com/an-tao/drogon/compare/v1.0.0-beta1...v1.0.0-beta2

Expand Down
2 changes: 1 addition & 1 deletion get_version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
GIT_VER=$(git log|grep ^commit|wc -l|sed -e "s/^ *//")
MD5=$(git log|head -1|awk '{printf $2}')
TMP_FILE=/tmp/version
echo "#define VERSION \"1.0.0.beta2.$GIT_VER\"" > ${TMP_FILE}
echo "#define VERSION \"1.0.0.beta3.$GIT_VER\"" > ${TMP_FILE}
echo "#define VERSION_MD5 \"$MD5\"" >> ${TMP_FILE}
if [ ! -f $1 ];then
mv -f ${TMP_FILE} $1
Expand Down

0 comments on commit 4599abf

Please sign in to comment.