From b44758a1953b3d5b1125bf4b08a264924dc0b96e Mon Sep 17 00:00:00 2001 From: Mads Marquart Date: Mon, 19 Mar 2018 21:28:48 +0100 Subject: [PATCH] Version up, thanks to @gave92 Fix `markAsRead` and `fetchUnread`; fixes #261 Added the `ssl_verify` instance variable, which allows disabling SSL varification for proxies --- fbchat/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fbchat/__init__.py b/fbchat/__init__.py index dc14167..c68bba3 100644 --- a/fbchat/__init__.py +++ b/fbchat/__init__.py @@ -17,7 +17,7 @@ from .client import * __copyright__ = 'Copyright 2015 - {} by Taehoon Kim'.format(datetime.now().year) -__version__ = '1.3.4' +__version__ = '1.3.5' __license__ = 'BSD' __author__ = 'Taehoon Kim; Moreels Pieter-Jan; Mads Marquart' __email__ = 'carpedm20@gmail.com'