From b8d638fa21ead3a6aa5b08ca11a17cd2180fb774 Mon Sep 17 00:00:00 2001 From: Fabio Ambauen <1833932+open-dynaMIX@users.noreply.github.com> Date: Fri, 18 Sep 2020 16:41:59 +0200 Subject: [PATCH 1/2] chore: switch to my new last name --- LICENSE.txt | 2 +- aur/raiseorlaunch/PKGBUILD | 2 +- raiseorlaunch/raiseorlaunch.py | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/LICENSE.txt b/LICENSE.txt index 93e55a1..905aeae 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,4 +1,4 @@ -Copyright 2017-2019 Fabio Rämi +Copyright 2017-2020 Fabio Ambauen Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: diff --git a/aur/raiseorlaunch/PKGBUILD b/aur/raiseorlaunch/PKGBUILD index 85be139..811cb3b 100644 --- a/aur/raiseorlaunch/PKGBUILD +++ b/aur/raiseorlaunch/PKGBUILD @@ -1,4 +1,4 @@ -# Maintainer: Fabio Rämi +# Maintainer: Fabio Ambauen pkgname=raiseorlaunch pkgver=2.3.3 diff --git a/raiseorlaunch/raiseorlaunch.py b/raiseorlaunch/raiseorlaunch.py index 0c1993b..0d730d2 100644 --- a/raiseorlaunch/raiseorlaunch.py +++ b/raiseorlaunch/raiseorlaunch.py @@ -10,7 +10,7 @@ __description__ = "A run-or-raise-application-launcher for i3 window manager." __version__ = "2.3.3" __license__ = "MIT" -__author__ = "Fabio Rämi" +__author__ = "Fabio Ambauen" import logging diff --git a/setup.py b/setup.py index 82642d0..74ddafe 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ long_description=long_description, long_description_content_type="text/markdown", url="https://github.com/open-dynaMIX/raiseorlaunch", - author="Fabio Rämi", + author="Fabio Ambauen", license="MIT", classifiers=[ "Development Status :: 4 - Beta", From 7ab45832a8d22f3bb0de33e55ad6209ec50a8069 Mon Sep 17 00:00:00 2001 From: Fabio Ambauen <1833932+open-dynaMIX@users.noreply.github.com> Date: Fri, 18 Sep 2020 16:45:19 +0200 Subject: [PATCH 2/2] chore(release): bump version to v2.3.4 --- CHANGELOG.md | 6 ++++++ raiseorlaunch/raiseorlaunch.py | 2 +- setup.py | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 992659f..af02101 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# v2.3.4 + +## Fixes + - handle empty window properties (4679401e2858c261bc5b403cdd04644019b8508e) + + # v2.3.3 ## Fixes diff --git a/raiseorlaunch/raiseorlaunch.py b/raiseorlaunch/raiseorlaunch.py index 0d730d2..4899f2a 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.3.3" +__version__ = "2.3.4" __license__ = "MIT" __author__ = "Fabio Ambauen" diff --git a/setup.py b/setup.py index 74ddafe..7c3a89b 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ setup( name="raiseorlaunch", - version="2.3.3", + version="2.3.4", description="A run-or-raise-application-launcher for i3 window manager.", long_description=long_description, long_description_content_type="text/markdown",