Skip to content

Commit

Permalink
Fixed #31
Browse files Browse the repository at this point in the history
  • Loading branch information
pylakey committed Jul 10, 2022
1 parent 13e9d00 commit 2b77ff9
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# aiotdlib CHANGELOG

### 0.19.1 - Hotfix

#### Fixed

* Fixed #31

### 0.19.0 - TDLib 1.8.4

#### Breaking
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.19.0"
__version__ = "0.19.1"

from .client import (
Client,
Expand Down
8 changes: 4 additions & 4 deletions aiotdlib/client_cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,6 @@

from sortedcontainers import SortedSet

from api import (
UpdateChatAvailableReactions,
UpdateChatUnreadReactionCount,
)
from .api import (
API,
AioTDLibError,
Expand Down Expand Up @@ -63,6 +59,10 @@
UpdateChatPendingJoinRequests,
UpdateChatTheme,
)
from .api import (
UpdateChatAvailableReactions,
UpdateChatUnreadReactionCount,
)

if typing.TYPE_CHECKING:
from .client import Client
Expand Down
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.19.0"
version = "0.19.1"
description = "Python asyncio Telegram client based on TDLib"
authors = ["pylakey <[email protected]>"]
license = "MIT"
Expand Down

0 comments on commit 2b77ff9

Please sign in to comment.