Skip to content

Commit fab354a

Browse files
committedMay 27, 2024
Update version to 1.8.30.
1 parent e9e2339 commit fab354a

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed
 

‎CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ if (POLICY CMP0065)
66
cmake_policy(SET CMP0065 NEW)
77
endif()
88

9-
project(TDLib VERSION 1.8.29 LANGUAGES CXX C)
9+
project(TDLib VERSION 1.8.30 LANGUAGES CXX C)
1010

1111
if (NOT DEFINED CMAKE_MODULE_PATH)
1212
set(CMAKE_MODULE_PATH "")

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ target_link_libraries(YourTarget PRIVATE Td::TdStatic)
103103

104104
Or you could install `TDLib` and then reference it in your CMakeLists.txt like this:
105105
```
106-
find_package(Td 1.8.29 REQUIRED)
106+
find_package(Td 1.8.30 REQUIRED)
107107
target_link_libraries(YourTarget PRIVATE Td::TdStatic)
108108
```
109109
See [example/cpp/CMakeLists.txt](https://github.com/tdlib/td/blob/master/example/cpp/CMakeLists.txt).

‎example/cpp/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.4 FATAL_ERROR)
22

33
project(TdExample VERSION 1.0 LANGUAGES CXX)
44

5-
find_package(Td 1.8.29 REQUIRED)
5+
find_package(Td 1.8.30 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

+1-1
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.29</version>
5+
<version>1.8.30</version>
66
<title>TDLib for Universal Windows Platform</title>
77
<authors>Telegram</authors>
88
<owners>Telegram</owners>

‎example/uwp/extension.vsixmanifest

+1-1
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.29" Language="en-US" Publisher="Telegram LLC" />
3+
<Identity Id="Telegram.Td.UWP" Version="1.8.30" 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>

‎td/telegram/OptionManager.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -702,7 +702,7 @@ td_api::object_ptr<td_api::OptionValue> OptionManager::get_option_synchronously(
702702
break;
703703
case 'v':
704704
if (name == "version") {
705-
return td_api::make_object<td_api::optionValueString>("1.8.29");
705+
return td_api::make_object<td_api::optionValueString>("1.8.30");
706706
}
707707
break;
708708
}

0 commit comments

Comments
 (0)