File tree Expand file tree Collapse file tree 6 files changed +6
-6
lines changed Expand file tree Collapse file tree 6 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ if (POLICY CMP0065)
6
6
cmake_policy (SET CMP0065 NEW )
7
7
endif ()
8
8
9
- project (TDLib VERSION 1.8.18 LANGUAGES CXX C )
9
+ project (TDLib VERSION 1.8.19 LANGUAGES CXX C )
10
10
11
11
if (NOT DEFINED CMAKE_MODULE_PATH )
12
12
set (CMAKE_MODULE_PATH "" )
Original file line number Diff line number Diff line change @@ -103,7 +103,7 @@ target_link_libraries(YourTarget PRIVATE Td::TdStatic)
103
103
104
104
Or you could install ` TDLib ` and then reference it in your CMakeLists.txt like this:
105
105
```
106
- find_package(Td 1.8.18 REQUIRED)
106
+ find_package(Td 1.8.19 REQUIRED)
107
107
target_link_libraries(YourTarget PRIVATE Td::TdStatic)
108
108
```
109
109
See [ example/cpp/CMakeLists.txt] ( https://github.com/tdlib/td/blob/master/example/cpp/CMakeLists.txt ) .
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.4 FATAL_ERROR)
2
2
3
3
project (TdExample VERSION 1.0 LANGUAGES CXX )
4
4
5
- find_package (Td 1.8.18 REQUIRED )
5
+ find_package (Td 1.8.19 REQUIRED )
6
6
7
7
add_executable (tdjson_example tdjson_example.cpp )
8
8
target_link_libraries (tdjson_example PRIVATE Td::TdJson )
Original file line number Diff line number Diff line change 2
2
<package xmlns =" http://schemas.microsoft.com/packaging/2013/01/nuspec.xsd" >
3
3
<metadata >
4
4
<id >Telegram.Td.UWP</id >
5
- <version >1.8.18 </version >
5
+ <version >1.8.19 </version >
6
6
<title >TDLib for Universal Windows Platform</title >
7
7
<authors >Telegram</authors >
8
8
<owners >Telegram</owners >
Original file line number Diff line number Diff line change 1
1
<PackageManifest Version =" 2.0.0" xmlns =" http://schemas.microsoft.com/developer/vsx-schema/2011" >
2
2
<Metadata >
3
- <Identity Id =" Telegram.Td.UWP" Version =" 1.8.18 " Language =" en-US" Publisher =" Telegram LLC" />
3
+ <Identity Id =" Telegram.Td.UWP" Version =" 1.8.19 " Language =" en-US" Publisher =" Telegram LLC" />
4
4
<DisplayName >TDLib for Universal Windows Platform</DisplayName >
5
5
<Description >TDLib is a library for building Telegram clients</Description >
6
6
<MoreInfo >https://core.telegram.org/tdlib</MoreInfo >
Original file line number Diff line number Diff line change @@ -569,7 +569,7 @@ td_api::object_ptr<td_api::OptionValue> OptionManager::get_option_synchronously(
569
569
break ;
570
570
case ' v' :
571
571
if (name == " version" ) {
572
- return td_api::make_object<td_api::optionValueString>(" 1.8.18 " );
572
+ return td_api::make_object<td_api::optionValueString>(" 1.8.19 " );
573
573
}
574
574
break ;
575
575
}
You can’t perform that action at this time.
0 commit comments