File tree 5 files changed +10
-4
lines changed
5 files changed +10
-4
lines changed Original file line number Diff line number Diff line change
1
+ Changes in 1.1.1:
2
+ * Fixed C JSON bindings compilation error.
3
+ * Fixed locale-dependent JSON generation.
4
+
5
+ -----------------------------------------------------------------------------------------------------------------------
6
+
1
7
Changes in 1.1.0:
2
8
3
9
* Methods ` td::Log::set_file_path ` and ` td_set_log_file_path ` now return whether they succeeded.
Original file line number Diff line number Diff line change 1
1
cmake_minimum_required (VERSION 3.0.2 FATAL_ERROR)
2
2
3
- project (TDLib VERSION 1.1.0 LANGUAGES CXX C)
3
+ project (TDLib VERSION 1.1.1 LANGUAGES CXX C)
4
4
5
5
option (TD_ENABLE_JNI "Use \" ON\" to enable JNI-compatible TDLib API." )
6
6
Original file line number Diff line number Diff line change @@ -104,7 +104,7 @@ target_link_libraries(YourTarget PRIVATE Td::TdStatic)
104
104
105
105
Or you could install ` TDLib ` and then reference it in your CMakeLists.txt like this:
106
106
```
107
- find_package(Td 1.1.0 REQUIRED)
107
+ find_package(Td 1.1.1 REQUIRED)
108
108
target_link_libraries(YourTarget PRIVATE Td::TdStatic)
109
109
```
110
110
See [ 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 @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.1 FATAL_ERROR)
2
2
3
3
project (TdExample VERSION 1.0 LANGUAGES CXX)
4
4
5
- find_package (Td 1.1.0 REQUIRED)
5
+ find_package (Td 1.1.1 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 @@ -191,7 +191,7 @@ class Td final : public NetQueryCallback {
191
191
static td_api::object_ptr<td_api::Object> static_request (td_api::object_ptr<td_api::Function> function);
192
192
193
193
private:
194
- static constexpr const char *tdlib_version = " 1.1.0 " ;
194
+ static constexpr const char *tdlib_version = " 1.1.1 " ;
195
195
static constexpr int32 ONLINE_TIMEOUT = 240 ;
196
196
197
197
void send_result (uint64 id, tl_object_ptr<td_api::Object> object);
You can’t perform that action at this time.
0 commit comments