From 67b04a2f70e1e4682c319cae9c72af53d9ef3041 Mon Sep 17 00:00:00 2001 From: twenty5151 Date: Thu, 16 Jul 2020 23:59:44 +0800 Subject: [PATCH] Bump version info --- CONTRIBUTING.md | 2 +- README.md | 8 ++++++++ koneko/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 7fd06c32..1077937a 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.1' --depth 1 https://github.com/twenty5151/koneko.git +git clone -b 'v0.9.2' --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 007a692f..c7f459db 100644 --- a/README.md +++ b/README.md @@ -110,6 +110,7 @@ For full changelogs please see [releases](https://github.com/twenty5151/koneko/r #### Features * lscat app: Display first picture if a mode 2 directory is selected +* This project is now mirrored on gitlab [here](https://gitlab.com/twenty5151/koneko) #### Bug fixes * Fixed mode 2 exclusive filter showing mode 1 page dirs @@ -119,6 +120,13 @@ For full changelogs please see [releases](https://github.com/twenty5151/koneko/r * Rename AbstractImageAdjuster.write() to report() * Added docstrings in assistants.py * Added image_adjuster.puml, displayed in HACKING.md +* Use namedtuple instead of classes in some tests +* Use mocks instead of repetitive fake classes +* Add AbstractData to puml +* Use new json in some tests +* Test print multiple images with one and two posts +* Add some comments on MVC vs MVA +* Removed unused search_string() method # Roadmap diff --git a/koneko/__init__.py b/koneko/__init__.py index 4fb57462..d80f8b6d 100644 --- a/koneko/__init__.py +++ b/koneko/__init__.py @@ -2,6 +2,6 @@ from blessed import Terminal -__version__ = '0.9.1' +__version__ = '0.9.2' KONEKODIR = Path('~/.local/share/koneko/cache').expanduser() TERM = Terminal() diff --git a/setup.py b/setup.py index a2c5a605..21f2dc67 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ setup( name='koneko', - version='0.9.1', + version='0.9.2', description='Browse pixiv in the terminal', long_description=README, long_description_content_type='text/markdown',