Skip to content

Commit

Permalink
Bump version to 1.0.0-beta17
Browse files Browse the repository at this point in the history
  • Loading branch information
an-tao committed May 23, 2020
1 parent d43c297 commit 84e503a
Show file tree
Hide file tree
Showing 11 changed files with 35 additions and 11 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ set(DROGON_MINOR_VERSION 0)
set(DROGON_PATCH_VERSION 0)
set(DROGON_VERSION
${DROGON_MAJOR_VERSION}.${DROGON_MINOR_VERSION}.${DROGON_PATCH_VERSION})
set(DROGON_VERSION_STRING "${DROGON_VERSION}.beta16")
set(DROGON_VERSION_STRING "${DROGON_VERSION}.beta17")

# Offer the user the choice of overriding the installation directories
set(INSTALL_LIB_DIR lib CACHE PATH "Installation directory for libraries")
Expand Down
28 changes: 27 additions & 1 deletion ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,30 @@ All notable changes to this project will be documented in this file.

## [Unreleased]

## [1.0.0-beta17] - 2020-05-22

### API change list

- Add methods to get DbClient connection status

### Changed

- Add causal profiling with coz

- Add filters on static file locations

- Pass data from view to its layout container

- Add additional HttpStatusCodes and implement a custom error handler

- Modify drogon_ctl to show more compilation information

### Fixed

- Fix a bug in drogon_ctl (when size of a line is larger than buffer size)

- Fix a connection bug of mariadb clients

## [1.0.0-beta16] - 2020-04-27

### API change list
Expand Down Expand Up @@ -360,7 +384,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-beta16...HEAD
[Unreleased]: https://github.com/an-tao/drogon/compare/v1.0.0-beta17...HEAD

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

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

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM ubuntu:18.04
RUN apt-get update -yqq \
&& apt-get install -yqq --no-install-recommends software-properties-common \
sudo curl wget cmake pkg-config locales git gcc-8 g++-8 \
openssl libssl-dev libjsoncpp-dev uuid-dev zlib1g-dev \
openssl libssl-dev libjsoncpp-dev uuid-dev zlib1g-dev libc-ares-dev\
postgresql-server-dev-all libmariadbclient-dev libsqlite3-dev \
&& rm -rf /var/lib/apt/lists/* \
&& locale-gen en_US.UTF-8
Expand Down
2 changes: 1 addition & 1 deletion drogon_ctl/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ endforeach()
add_executable(drogon_ctl ${ctl_sources} ${TEMPL_SRC})
target_link_libraries(drogon_ctl PRIVATE ${PROJECT_NAME})
target_include_directories(drogon_ctl PRIVATE ${CMAKE_CURRENT_SOURCE_DIR})
add_dependencies(drogon_ctl trantor _drogon_ctl)
add_dependencies(drogon_ctl _drogon_ctl)
if(WIN32)
target_link_libraries(drogon_ctl PRIVATE ws2_32 Rpcrt4)
endif(WIN32)
Expand Down
1 change: 0 additions & 1 deletion lib/src/WebSocketConnectionImpl.cc
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
#include "WebSocketConnectionImpl.h"
#include "HttpAppFrameworkImpl.h"
#include <thread>
#include <trantor/net/inner/TcpConnectionImpl.h>

using namespace drogon;
WebSocketConnectionImpl::WebSocketConnectionImpl(
Expand Down
2 changes: 1 addition & 1 deletion orm_lib/src/DbClientImpl.cc
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
#endif
#include <thread>
#include <trantor/net/EventLoop.h>
#include <trantor/net/inner/Channel.h>
#include <trantor/net/Channel.h>
#include <unordered_set>
#include <vector>

Expand Down
2 changes: 1 addition & 1 deletion orm_lib/src/DbClientLockFree.cc
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
#endif
#include <thread>
#include <trantor/net/EventLoop.h>
#include <trantor/net/inner/Channel.h>
#include <trantor/net/Channel.h>
#include <unordered_set>
#include <vector>

Expand Down
1 change: 0 additions & 1 deletion orm_lib/src/DbConnection.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
#include <drogon/orm/DbClient.h>
#include <drogon/utils/string_view.h>
#include <trantor/net/EventLoop.h>
#include <trantor/net/inner/Channel.h>
#include <trantor/utils/NonCopyable.h>
#include <functional>
#include <iostream>
Expand Down
2 changes: 1 addition & 1 deletion orm_lib/src/mysql_impl/MysqlConnection.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#include "../DbConnection.h"
#include <drogon/orm/DbClient.h>
#include <trantor/net/EventLoop.h>
#include <trantor/net/inner/Channel.h>
#include <trantor/net/Channel.h>
#include <trantor/utils/NonCopyable.h>
#include <functional>
#include <iostream>
Expand Down
2 changes: 1 addition & 1 deletion orm_lib/src/postgresql_impl/PgConnection.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#include "../DbConnection.h"
#include <drogon/orm/DbClient.h>
#include <trantor/net/EventLoop.h>
#include <trantor/net/inner/Channel.h>
#include <trantor/net/Channel.h>
#include <trantor/utils/NonCopyable.h>
#include <libpq-fe.h>
#include <unordered_map>
Expand Down
2 changes: 1 addition & 1 deletion trantor

0 comments on commit 84e503a

Please sign in to comment.