Update version to 5.3.2.

This commit is contained in:
levlam 2021-09-08 17:22:40 +03:00
parent 40ff6f637b
commit 0e1862d26d
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ if (POLICY CMP0065)
cmake_policy(SET CMP0065 NEW)
endif()
project(TelegramBotApi VERSION 5.3.1 LANGUAGES CXX)
project(TelegramBotApi VERSION 5.3.2 LANGUAGES CXX)
add_subdirectory(td EXCLUDE_FROM_ALL)

View File

@ -193,7 +193,7 @@ int main(int argc, char *argv[]) {
auto start_time = td::Time::now();
auto shared_data = std::make_shared<SharedData>();
auto parameters = std::make_unique<ClientParameters>();
parameters->version_ = "5.3.1";
parameters->version_ = "5.3.2";
parameters->shared_data_ = shared_data;
parameters->start_time_ = start_time;
auto net_query_stats = td::create_net_query_stats();