Skip to content

Commit 278c7ac

Browse files
committed
Increase version to 1.6.0.
GitOrigin-RevId: baab600dbf0b3f4014b836e06da09b9b825181d4
1 parent 4f7763f commit 278c7ac

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

‎CMakeLists.txt‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cmake_minimum_required(VERSION 3.0.2 FATAL_ERROR)
22

3-
project(TDLib VERSION 1.5.5 LANGUAGES CXX C)
3+
project(TDLib VERSION 1.6.0 LANGUAGES CXX C)
44

55
if (NOT DEFINED CMAKE_INSTALL_LIBDIR)
66
set(CMAKE_INSTALL_LIBDIR "lib")

‎README.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ target_link_libraries(YourTarget PRIVATE Td::TdStatic)
146146

147147
Or you could install `TDLib` and then reference it in your CMakeLists.txt like this:
148148
```
149-
find_package(Td 1.5.5 REQUIRED)
149+
find_package(Td 1.6.0 REQUIRED)
150150
target_link_libraries(YourTarget PRIVATE Td::TdStatic)
151151
```
152152
See [example/cpp/CMakeLists.txt](https://github.com/tdlib/td/tree/master/example/cpp/CMakeLists.txt).

‎build.html‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -668,7 +668,7 @@
668668
commands.push('git clone https://github.com/tdlib/td.git');
669669

670670
commands.push('cd td');
671-
commands.push('git checkout v1.5.0');
671+
// commands.push('git checkout v1.6.0');
672672

673673
if (use_vcpkg) {
674674
commands.push('git clone https://github.com/Microsoft/vcpkg.git');

‎example/cpp/CMakeLists.txt‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.1 FATAL_ERROR)
22

33
project(TdExample VERSION 1.0 LANGUAGES CXX)
44

5-
find_package(Td 1.5.5 REQUIRED)
5+
find_package(Td 1.6.0 REQUIRED)
66

77
add_executable(tdjson_example tdjson_example.cpp)
88
target_link_libraries(tdjson_example PRIVATE Td::TdJson)

‎example/uwp/extension.vsixmanifest‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011">
22
<Metadata>
3-
<Identity Id="Telegram.Td.UWP" Version="1.5.5" Language="en-US" Publisher="Telegram LLC" />
3+
<Identity Id="Telegram.Td.UWP" Version="1.6.0" Language="en-US" Publisher="Telegram LLC" />
44
<DisplayName>TDLib for Universal Windows Platform</DisplayName>
55
<Description>TDLib is a library for building Telegram clients</Description>
66
<MoreInfo>https://core.telegram.org/tdlib</MoreInfo>

‎example/web/tdweb/package.json‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tdweb",
3-
"version": "1.5.0",
3+
"version": "1.6.0",
44
"description": "Javascript interface for TDLib (telegram library)",
55
"main": "dist/tdweb.js",
66
"repository": {

‎td/telegram/Td.h‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ class Td final : public NetQueryCallback {
227227
static td_api::object_ptr<td_api::Object> static_request(td_api::object_ptr<td_api::Function> function);
228228

229229
private:
230-
static constexpr const char *TDLIB_VERSION = "1.5.5";
230+
static constexpr const char *TDLIB_VERSION = "1.6.0";
231231
static constexpr int64 ONLINE_ALARM_ID = 0;
232232
static constexpr int64 PING_SERVER_ALARM_ID = -1;
233233
static constexpr int32 PING_SERVER_TIMEOUT = 300;

0 commit comments

Comments
 (0)