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)
66 cmake_policy (SET CMP0065 NEW)
77endif ()
88
9- project (TDLib VERSION 1.7.12 LANGUAGES CXX C)
9+ project (TDLib VERSION 1.8.0 LANGUAGES CXX C)
1010
1111if (NOT DEFINED CMAKE_MODULE_PATH )
1212 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)
103103
104104Or you could install ` TDLib ` and then reference it in your CMakeLists.txt like this:
105105```
106- find_package(Td 1.7.12 REQUIRED)
106+ find_package(Td 1.8.0 REQUIRED)
107107target_link_libraries(YourTarget PRIVATE Td::TdStatic)
108108```
109109See [ example/cpp/CMakeLists.txt] ( https://github.com/tdlib/td/tree/master/example/cpp/CMakeLists.txt ) .
Original file line number Diff line number Diff line change 909909 commands . push ( 'git clone https://github.com/tdlib/td.git' ) ;
910910
911911 commands . push ( 'cd td' ) ;
912- // commands.push('git checkout v1.7 .0');
912+ commands . push ( 'git checkout v1.8 .0' ) ;
913913
914914 if ( use_vcpkg ) {
915915 commands . push ( 'git clone https://github.com/Microsoft/vcpkg.git' ) ;
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.4 FATAL_ERROR)
22
33project (TdExample VERSION 1.0 LANGUAGES CXX)
44
5- find_package (Td 1.7.12 REQUIRED)
5+ find_package (Td 1.8.0 REQUIRED)
66
77add_executable (tdjson_example tdjson_example.cpp)
88target_link_libraries (tdjson_example PRIVATE Td::TdJson)
Original file line number Diff line number Diff line change 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.7.12 " Language =" en-US" Publisher =" Telegram LLC" />
3+ <Identity Id =" Telegram.Td.UWP" Version =" 1.8.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 >
Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ class Td final : public Actor {
9898 Td &operator =(Td &&) = delete ;
9999 ~Td () final ;
100100
101- static constexpr const char *TDLIB_VERSION = " 1.7.12 " ;
101+ static constexpr const char *TDLIB_VERSION = " 1.8.0 " ;
102102
103103 struct Options {
104104 std::shared_ptr<NetQueryStats> net_query_stats;
You can’t perform that action at this time.
0 commit comments