From 51d7876f929c5cb649d497c08f192b4327df34b8 Mon Sep 17 00:00:00 2001 From: David Marx Date: Fri, 18 May 2018 01:03:51 -0700 Subject: [PATCH] Added change log --- CHANGES.rst | 21 +++++++++++++++++++++ psaw/__init__.py | 2 +- 2 files changed, 22 insertions(+), 1 deletion(-) create mode 100644 CHANGES.rst diff --git a/CHANGES.rst b/CHANGES.rst new file mode 100644 index 0000000..56d0112 --- /dev/null +++ b/CHANGES.rst @@ -0,0 +1,21 @@ +Change Log +========== + +0.0.3 (2018/05/18) +------------------ + +* Added praw support. If ``praw.Reddit`` object provided to ``PushshiftAPI``, + gets ids from pushshift and passes them to praw. +* Added support for ``/reddit/submission/comment_ids/`` endpoint. +* Added change log. + +0.0.2 (2018/05/13) +------------------ + +* Improved rate limit handling +* Misc bug fixes. + +0.0.1 (2018/04/14) +------------------ + +* Dirty support for ``reddit/comment/search`` and ``reddit/comment/search``. diff --git a/psaw/__init__.py b/psaw/__init__.py index 36508c8..a9bdcba 100644 --- a/psaw/__init__.py +++ b/psaw/__init__.py @@ -6,4 +6,4 @@ https://github.com/dmarx/psaw from .PushshiftAPI import PushshiftAPI, PushshiftAPIMinimal -__version__ = '0.0.2' +__version__ = '0.0.3'