Skip to content

Commit bdec6af

Browse files
committed
Update version to 1.8.53.
1 parent b2cf730 commit bdec6af

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
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.10 FATAL_ERROR)
22

3-
project(TDLib VERSION 1.8.52 LANGUAGES CXX C)
3+
project(TDLib VERSION 1.8.53 LANGUAGES CXX C)
44

55
if (NOT DEFINED CMAKE_MODULE_PATH)
66
set(CMAKE_MODULE_PATH "")

README.md

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

101101
Or you could install `TDLib` and then reference it in your CMakeLists.txt like this:
102102
```
103-
find_package(Td 1.8.52 REQUIRED)
103+
find_package(Td 1.8.53 REQUIRED)
104104
target_link_libraries(YourTarget PRIVATE Td::TdStatic)
105105
```
106106
See [example/cpp/CMakeLists.txt](https://github.com/tdlib/td/blob/master/example/cpp/CMakeLists.txt).

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.10 FATAL_ERROR)
22

33
project(TdExample VERSION 1.0 LANGUAGES CXX)
44

5-
find_package(Td 1.8.52 REQUIRED)
5+
find_package(Td 1.8.53 REQUIRED)
66

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

example/uwp/Telegram.Td.UWP.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2013/01/nuspec.xsd">
33
<metadata>
44
<id>Telegram.Td.UWP</id>
5-
<version>1.8.52</version>
5+
<version>1.8.53</version>
66
<title>TDLib for Universal Windows Platform</title>
77
<authors>Telegram</authors>
88
<owners>Telegram</owners>

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.8.52" Language="en-US" Publisher="Telegram LLC" />
3+
<Identity Id="Telegram.Td.UWP" Version="1.8.53" 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-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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.8.52",
3+
"version": "1.8.53",
44
"description": "JavaScript interface for TDLib (Telegram library)",
55
"main": "dist/tdweb.js",
66
"repository": {

td/telegram/OptionManager.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -753,7 +753,7 @@ td_api::object_ptr<td_api::OptionValue> OptionManager::get_option_synchronously(
753753
break;
754754
case 'v':
755755
if (name == "version") {
756-
return td_api::make_object<td_api::optionValueString>("1.8.52");
756+
return td_api::make_object<td_api::optionValueString>("1.8.53");
757757
}
758758
break;
759759
}

0 commit comments

Comments
 (0)