From 7d334cc1a3d8a1f4c5fa8137531a7cac4b508b90 Mon Sep 17 00:00:00 2001 From: Fabio Date: Mon, 20 May 2019 21:50:02 +0200 Subject: [PATCH] Prepare release - bumped version - some minor cleanup --- CHANGELOG.md | 16 +++++++++++++--- raiseorlaunch/raiseorlaunch.py | 2 +- setup.py | 3 +-- tox.ini | 1 - 4 files changed, 15 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a2f5cca..12182a2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,19 +1,29 @@ +# v2.3.0 + +## Features + - Add tests with 100% coverage + - Introduce [black](https://github.com/python/black) + - Introduce [isort](https://github.com/timothycrosley/isort) + - Introduce [flake8](https://gitlab.com/pycqa/flake8) + - Use Travis CI to ensure and enforce all of the above + + # v2.2.1 -# Fixes +## Fixes - `--leave-fullscreen` doesn't work if no workspace has been provided #30 # v2.2.0 -# Features +## Features - Add flag to disable existing fullscreen #27 - Rename --init-workspace to --target-workspace #28 # v2.1.0 -# Features +## Features - Added flag to set initial workspace #15 - Move created windows to expected workspace #16 - Window cycling #17 diff --git a/raiseorlaunch/raiseorlaunch.py b/raiseorlaunch/raiseorlaunch.py index 101522f..8bbafeb 100644 --- a/raiseorlaunch/raiseorlaunch.py +++ b/raiseorlaunch/raiseorlaunch.py @@ -8,7 +8,7 @@ __title__ = "raiseorlaunch" __description__ = "A run-or-raise-application-launcher for i3 window manager." -__version__ = "2.2.1" +__version__ = "2.3.0" __license__ = "MIT" __author__ = "Fabio Rämi" diff --git a/setup.py b/setup.py index f1c29d7..da86009 100644 --- a/setup.py +++ b/setup.py @@ -17,13 +17,12 @@ setup( name="raiseorlaunch", - version="2.2.1", + version="2.3.0", description="A run-or-raise-application-launcher for i3 window manager.", long_description=long_description, long_description_content_type="text/markdown", url="https://github.com/open-dynaMIX/raiseorlaunch", author="Fabio Rämi", - author_email="fabio@dynamix-tontechnik.ch", license="MIT", classifiers=[ "Development Status :: 4 - Beta", diff --git a/tox.ini b/tox.ini index 236c3a7..4eb7a3c 100644 --- a/tox.ini +++ b/tox.ini @@ -21,7 +21,6 @@ deps= py{35,36,37}: pytest-mock flake8: flake8 flake8: flake8-isort - isort: pytest black: black commands= py{35,36,37}: python -m pytest --cov=raiseorlaunch --cov-report=term-missing --no-cov-on-fail -r a -vv