From 195d4d057adf258c3cb45a90d087a129a8ed5e8d Mon Sep 17 00:00:00 2001 From: "Alexander \"Arav\" Andreev" Date: Sat, 18 Jul 2020 04:43:45 +0400 Subject: [PATCH] Version is incremented now and I wrote down the changes. --- CHANGELOG.md | 8 ++++++++ Makefile | 2 +- scrapthechan/__init__.py | 4 ++-- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index db86886..a05a54b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.2.0 - 2020-07-18 +### Added +- Threaded version of the scraper, so now it is fast as heck! + +### Fixed +- Handled situation when OP's post has no comment and/or subject. + + ## 0.1.0 - 2020-07-08 ### Added - JSON parsers for 4chan.org, lainchan.org and 2ch.hk. diff --git a/Makefile b/Makefile index 6123a42..4d043e6 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ build: scrapthechan README.md setup.cfg python setup.py sdist bdist_wheel install: - python -m pip install --upgrade dist/scrapthechan-0.1.0-py3-none-any.whl --user + python -m pip install --upgrade dist/scrapthechan-0.2.0-py3-none-any.whl --user uninstall: # We change directory so pip uninstall will run, it'll fail otherwise. @cd ~/ diff --git a/scrapthechan/__init__.py b/scrapthechan/__init__.py index 9f143af..49617bd 100644 --- a/scrapthechan/__init__.py +++ b/scrapthechan/__init__.py @@ -1,5 +1,5 @@ -__date__ = "8 Jule 2020" -__version__ = "0.1.0" +__date__ = "18 Jule 2020" +__version__ = "0.2.0" __author__ = "Alexander \"Arav\" Andreev" __email__ = "me@arav.top" __copyright__ = f"Copyright (c) 2020 {__author__} <{__email__}>"