Skip to content

Commit 77ba198

Browse files
authored
Bump version to 1.24.1 (#116)
1 parent 65cb28c commit 77ba198

9 files changed

Lines changed: 17 additions & 7 deletions

File tree

docking/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@
3838
alternate application entrypoint.
3939
"""
4040

41-
__version__ = "1.24.0"
41+
__version__ = "1.24.1"

packaging/arch/PKGBUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
pkgname=docking
2-
pkgver=1.24.0
2+
pkgver=1.24.1
33
pkgrel=1
44
pkgdesc="A lightweight, feature-rich dock for Linux written in Python with GTK 3 and Cairo"
55
arch=('x86_64' 'aarch64')

packaging/deb/debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
docking (1.24.1-1) stable; urgency=medium
2+
3+
* Release 1.24.1.
4+
5+
-- Eduardo Mucelli Rezende Oliveira <edumucelli@gmail.com> Fri, 22 May 2026 20:35:10 +0200
6+
17
docking (1.24.0-1) stable; urgency=medium
28

39
* Release 1.24.0.

packaging/flatpak/cc.docking.Docking.metainfo.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
</provides>
3636
<content_rating type="oars-1.1" />
3737
<releases>
38+
<release version="1.24.1" date="2026-05-22" />
3839
<release version="1.24.0" date="2026-05-21" />
3940
<release version="1.23.1" date="2026-05-19" />
4041
<release version="1.23.0" date="2026-05-18" />

packaging/nix/default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ let
55
in
66
pyPkgs.buildPythonApplication rec {
77
pname = "docking";
8-
version = "1.24.0";
8+
version = "1.24.1";
99
format = "pyproject";
1010

1111
src = ../..;

packaging/rpm/docking.spec

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Name: docking
2-
Version: %{?pkg_version}%{!?pkg_version:1.24.0}
2+
Version: %{?pkg_version}%{!?pkg_version:1.24.1}
33
Release: 1%{?dist}
44
Summary: A lightweight, feature-rich dock for Linux written in Python with GTK 3 and Cairo
55

@@ -88,6 +88,9 @@ fi
8888
/usr/share/icons/hicolor
8989

9090
%changelog
91+
* Fri May 22 2026 Eduardo Mucelli Rezende Oliveira <edumucelli@gmail.com> - 1.24.1-1
92+
- Release 1.24.1.
93+
9194
* Thu May 21 2026 Eduardo Mucelli Rezende Oliveira <edumucelli@gmail.com> - 1.24.0-1
9295
- Release 1.24.0.
9396

packaging/snap/snapcraft.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: docking
22
title: Docking
33
base: core22
4-
version: "1.24.0"
4+
version: "1.24.1"
55
summary: Feature-rich Linux dock in Python with GTK 3 and Cairo
66
description: |
77
A lightweight, feature-rich dock for Linux written in Python with GTK 3 and Cairo.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "docking"
7-
version = "1.24.0"
7+
version = "1.24.1"
88
description = "A lightweight, feature-rich dock for Linux written in Python with GTK 3 and Cairo"
99
requires-python = ">=3.10"
1010
license = {text = "GPL-3.0-or-later"}

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# The canonical config is in pyproject.toml.
33
[metadata]
44
name = docking
5-
version = 1.24.0
5+
version = 1.24.1
66
[options]
77
packages = find:
88
python_requires = >=3.10

0 commit comments

Comments
 (0)