diff --git a/CHANGELOG.md b/CHANGELOG.md index 06bf23e8..ce2446a6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # aiotdlib CHANGELOG +### 0.10.2 - Minor update of TDLib + +#### Updated + +* TDLib binaries upgraded to latest [available version](https://github.com/pylakey/td/commit/bee2893533b2d62b42f90e1b8bb4f197c2321dfa) + +* API types and functions regenerated + +### 0.10.1 - Minor fixes + ### 0.10.0 - TDLib 1.7.7 #### Added diff --git a/README.md b/README.md index e9fcea6c..913ec804 100644 --- a/README.md +++ b/README.md @@ -4,15 +4,15 @@ [![PyPI pyversions](https://img.shields.io/pypi/pyversions/aiotdlib.svg)](https://pypi.python.org/pypi/aiotdlib/) [![PyPI license](https://img.shields.io/pypi/l/aiotdlib.svg)](https://pypi.python.org/pypi/aiotdlib/) -> This wrapper is actual for **[TDLib v1.7.7 (7135caa)](https://github.com/tdlib/td/commit/7135caa2bef38939f58e9e206db83fd316236682)** +> This wrapper is actual for **[TDLib v1.7.7 (bee2893)](https://github.com/tdlib/td/commit/bee2893533b2d62b42f90e1b8bb4f197c2321dfa)** > > This package includes prebuilt TDLib binaries for macOS and Debian Buster. -> You can use your own binary by passing `library_path` argument to `Client` class constructor. Make sure it's built from [this commit](https://github.com/tdlib/td/commit/7135caa2bef38939f58e9e206db83fd316236682). Compatibility with other versions of library is not guaranteed. +> You can use your own binary by passing `library_path` argument to `Client` class constructor. Make sure it's built from [this commit](https://github.com/tdlib/td/commit/bee2893533b2d62b42f90e1b8bb4f197c2321dfa). Compatibility with other versions of library is not guaranteed. ## Features * All types and functions are generated automatically - from [tl schema](https://github.com/tdlib/td/blob/7135caa2bef38939f58e9e206db83fd316236682/td/generate/scheme/td_api.tl) + from [tl schema](https://github.com/tdlib/td/blob/bee2893533b2d62b42f90e1b8bb4f197c2321dfa/td/generate/scheme/td_api.tl) * All types and functions come with validation and good IDE type hinting (thanks to [Pydantic](https://github.com/samuelcolvin/pydantic)) * A set of high-level API methods which makes work with tdlib much simpler diff --git a/aiotdlib/__init__.py b/aiotdlib/__init__.py index 18f5b82e..46a2f01a 100644 --- a/aiotdlib/__init__.py +++ b/aiotdlib/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.10.1" +__version__ = "0.10.2" from .client import ( Client, diff --git a/aiotdlib/tdlib/darwin/arm64/libtdjson.dylib b/aiotdlib/tdlib/darwin/arm64/libtdjson.dylib index 4c5b27ea..61e1b16e 100755 Binary files a/aiotdlib/tdlib/darwin/arm64/libtdjson.dylib and b/aiotdlib/tdlib/darwin/arm64/libtdjson.dylib differ diff --git a/aiotdlib/tdlib/linux/amd64/libtdjson.so b/aiotdlib/tdlib/linux/amd64/libtdjson.so index 00c34c76..ceffa615 100644 Binary files a/aiotdlib/tdlib/linux/amd64/libtdjson.so and b/aiotdlib/tdlib/linux/amd64/libtdjson.so differ diff --git a/aiotdlib/tdlib/linux/arm64/libtdjson.so b/aiotdlib/tdlib/linux/arm64/libtdjson.so index 75a70938..36d9829a 100644 Binary files a/aiotdlib/tdlib/linux/arm64/libtdjson.so and b/aiotdlib/tdlib/linux/arm64/libtdjson.so differ diff --git a/pyproject.toml b/pyproject.toml index 047ea02d..e8339bcb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "aiotdlib" -version = "0.10.1" +version = "0.10.2" description = "Python asyncio Telegram client based on TDLib" authors = ["pylakey "] license = "MIT"