Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docking/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@
alternate application entrypoint.
"""

__version__ = "1.16.0"
__version__ = "1.17.0"
2 changes: 1 addition & 1 deletion packaging/arch/PKGBUILD
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
pkgname=docking
pkgver=1.16.0
pkgver=1.17.0
pkgrel=1
pkgdesc="A lightweight, feature-rich dock for Linux written in Python with GTK 3 and Cairo"
arch=('x86_64' 'aarch64')
Expand Down
6 changes: 6 additions & 0 deletions packaging/deb/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
docking (1.17.0-1) stable; urgency=medium

* Release 1.17.0.

-- Eduardo Mucelli Rezende Oliveira <edumucelli@gmail.com> Wed, 06 May 2026 21:31:57 +0200

docking (1.16.0-1) stable; urgency=medium

* Release 1.16.0.
Expand Down
1 change: 1 addition & 0 deletions packaging/flatpak/org.docking.Docking.metainfo.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
</provides>
<content_rating type="oars-1.1" />
<releases>
<release version="1.17.0" date="2026-05-06" />
<release version="1.16.0" date="2026-04-30" />
<release version="1.15.0" date="2026-04-29" />
<release version="1.14.1" date="2026-04-29" />
Expand Down
2 changes: 1 addition & 1 deletion packaging/nix/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ let
in
pyPkgs.buildPythonApplication rec {
pname = "docking";
version = "1.16.0";
version = "1.17.0";
format = "pyproject";

src = ../..;
Expand Down
5 changes: 4 additions & 1 deletion packaging/rpm/docking.spec
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Name: docking
Version: %{?pkg_version}%{!?pkg_version:1.16.0}
Version: %{?pkg_version}%{!?pkg_version:1.17.0}
Release: 1%{?dist}
Summary: A lightweight, feature-rich dock for Linux written in Python with GTK 3 and Cairo

Expand Down Expand Up @@ -88,6 +88,9 @@ fi
/usr/share/icons/hicolor

%changelog
* Wed May 06 2026 Eduardo Mucelli Rezende Oliveira <edumucelli@gmail.com> - 1.17.0-1
- Release 1.17.0.

* Thu Apr 30 2026 Eduardo Mucelli Rezende Oliveira <edumucelli@gmail.com> - 1.16.0-1
- Release 1.16.0.

Expand Down
2 changes: 1 addition & 1 deletion packaging/snap/snapcraft.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: docking
title: Docking
base: core22
version: "1.16.0"
version: "1.17.0"
summary: Feature-rich Linux dock in Python with GTK 3 and Cairo
description: |
A lightweight, feature-rich dock for Linux written in Python with GTK 3 and Cairo.
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "docking"
version = "1.16.0"
version = "1.17.0"
description = "A lightweight, feature-rich dock for Linux written in Python with GTK 3 and Cairo"
requires-python = ">=3.10"
license = {text = "GPL-3.0-or-later"}
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# The canonical config is in pyproject.toml.
[metadata]
name = docking
version = 1.16.0
version = 1.17.0
[options]
packages = find:
python_requires = >=3.10
Expand Down
Loading