From 6d561daa0117885585fe9abf4c0c09295495aa72 Mon Sep 17 00:00:00 2001 From: Vincent Michel Date: Thu, 11 Feb 2021 16:24:13 +0100 Subject: [PATCH] Bump version 0.9.0 --- README.md | 7 ++++--- setup.py | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index ac2615a..7d98302 100644 --- a/README.md +++ b/README.md @@ -180,10 +180,11 @@ Here is the list of the dependencies used in this project, all great open source - [gambatte](https://github.com/sinamas/gambatte) - Gameboy emulation - [Cython](https://cython.org/) - Binding to gambatte C++ API, and fast video frame conversion -- [prompt-toolkit](https://github.com/prompt-toolkit/python-prompt-toolkit) - Handling of the terminal stream -- [samplerate](https://github.com/tuxu/python-samplerate) - Resampling the emulator audio stream +- [prompt-toolkit](https://github.com/prompt-toolkit/python-prompt-toolkit) - Cross-platform terminal handling +- [samplerate](https://github.com/tuxu/python-samplerate) - Resampling the audio stream - [sounddevice](https://github.com/spatialaudio/python-sounddevice) - Playing the audio stream -- [xlib](https://github.com/python-xlib/python-xlib)/[pynput](https://github.com/moses-palmer/pynput) - Getting keyboard input +- [xlib](https://github.com/python-xlib/python-xlib)/[pynput](https://github.com/moses-palmer/pynput) - Getting keyboard inputs +- [pygame](https://github.com/pygame/pygame) - Getting game controller inputs - [asyncssh](https://github.com/ronf/asyncssh) - Running the SSH server diff --git a/setup.py b/setup.py index 529eb06..4534d2e 100644 --- a/setup.py +++ b/setup.py @@ -49,7 +49,7 @@ def __fspath__(self): setup( name="gambaterm", - version="0.8.1", + version="0.9.0", packages=["gambaterm"], setup_requires=["setuptools>=42", "Cython>=0.29.13", "numpy"], ext_modules=[gambatte_extension, termblit_extension],