Skip to content

Commit

Permalink
* TDLib binaries upgraded to latest [available version](pylakey/td@be…
Browse files Browse the repository at this point in the history
…e2893)

* Bumped version
  • Loading branch information
pylakey committed Sep 16, 2021
1 parent dc46929 commit 80dab85
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 5 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion aiotdlib/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.10.1"
__version__ = "0.10.2"

from .client import (
Client,
Expand Down
Binary file modified aiotdlib/tdlib/darwin/arm64/libtdjson.dylib
Binary file not shown.
Binary file modified aiotdlib/tdlib/linux/amd64/libtdjson.so
Binary file not shown.
Binary file modified aiotdlib/tdlib/linux/arm64/libtdjson.so
Binary file not shown.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
license = "MIT"
Expand Down

0 comments on commit 80dab85

Please sign in to comment.