diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 1077937a..b0461eec 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -45,7 +45,7 @@ Note: if you want to make some edits, you should install it in a conda environme ```sh # Use the latest stable version (recommended for usage) # Make sure the version number is the latest -git clone -b 'v0.9.2' --depth 1 https://github.com/twenty5151/koneko.git +git clone -b 'v0.10.0' --depth 1 https://github.com/twenty5151/koneko.git # Use the master branch for upcoming features: git clone -b master https://github.com/twenty5151/koneko.git # Use the dev branch for latest features, fixes, and instability (recommended for contributers): diff --git a/README.md b/README.md index 159e16f5..4cf431f4 100644 --- a/README.md +++ b/README.md @@ -181,7 +181,7 @@ When test installing with pip, don't forget to use `pip install .` or `python se Test installing with `pip install .`, `python setup.py install`, `python setup.py develop`, and `python -m koneko.main` is now automated. -Bump version info in `__init__.py`, `setup.py`, `README.md`, and `CONTRIBUTING.md` +Bump version info in `__init__.py`, `setup.py`, and `CONTRIBUTING.md` ```sh python setup.py sdist bdist_wheel diff --git a/koneko/__init__.py b/koneko/__init__.py index d80f8b6d..6bf0cbb0 100644 --- a/koneko/__init__.py +++ b/koneko/__init__.py @@ -2,6 +2,6 @@ from blessed import Terminal -__version__ = '0.9.2' +__version__ = '0.10.0' KONEKODIR = Path('~/.local/share/koneko/cache').expanduser() TERM = Terminal() diff --git a/setup.py b/setup.py index 21f2dc67..b5010b06 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ setup( name='koneko', - version='0.9.2', + version='0.10.0', description='Browse pixiv in the terminal', long_description=README, long_description_content_type='text/markdown',