From e1e988272b908c3abec5689c9543e72e93c6aa82 Mon Sep 17 00:00:00 2001 From: Mads Marquart Date: Sun, 23 Jun 2019 18:02:05 +0200 Subject: [PATCH] Version up, thanks to @kapi2289 - Removed / privatized a lot of undocumented functionality, which might break some users application if they were relying on those (hence the minor version bump). See #432 for further reasoning - Add `Client.forwardAttachment` and `Message.forwarded` attribute, see #420 - Fix parsing subattachments with no target, see #412 - Lots of other refactoring, aka. work on the transition towards v2 --- fbchat/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fbchat/__init__.py b/fbchat/__init__.py index 1a1ba87..2cbd599 100644 --- a/fbchat/__init__.py +++ b/fbchat/__init__.py @@ -13,7 +13,7 @@ from ._client import Client from ._util import log # TODO: Remove this (from examples too) __title__ = "fbchat" -__version__ = "1.6.5" +__version__ = "1.7.0" __description__ = "Facebook Chat (Messenger) for Python" __copyright__ = "Copyright 2015 - 2019 by Taehoon Kim"