From 33cf3c3be03ec00a1f4e8c4e6a9525a3dbace64a Mon Sep 17 00:00:00 2001 From: Hao Zhou Date: Sun, 10 Nov 2019 21:20:21 +0800 Subject: [PATCH] Bump version to 3.5.2 --- README.md | 10 ++++++++++ pixivpy3/__init__.py | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index c42af4c1..9c586d23 100644 --- a/README.md +++ b/README.md @@ -441,6 +441,16 @@ illust = json_result.response[0] print(">>> %s url: %s" % (illust.title, illust.image_urls.px_480mw)) ~~~ +## Make a release + +> Bump version in `pixivpy3/__init__.py`, rebuild dist/* + +```bash +python3 setup.py sdist bdist_wheel +python2 setup.py bdist_wheel +twine upload dist/* +``` + ## License Feel free to use, reuse and abuse the code in this project. diff --git a/pixivpy3/__init__.py b/pixivpy3/__init__.py index 76c20b46..6df46f1e 100644 --- a/pixivpy3/__init__.py +++ b/pixivpy3/__init__.py @@ -1,7 +1,7 @@ """ Pixiv API library """ -__version__ = '3.5.1' +__version__ = '3.5.2' from .papi import PixivAPI from .aapi import AppPixivAPI