1
0
Fork 0

Version is incremented now and I wrote down the changes.

This commit is contained in:
Alexander Andreev 2020-07-18 04:43:45 +04:00
parent 87eecf0a09
commit 195d4d057a
3 changed files with 11 additions and 3 deletions

View File

@ -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.

View File

@ -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 ~/

View File

@ -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__}>"