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