From 27f9d9ddcf20be87c6cede65c89c5b098b16330d Mon Sep 17 00:00:00 2001 From: Mike Gabriel Date: Wed, 10 Jun 2026 17:49:07 +0200 Subject: Release 0.6.0 - CMake: Add ${CMAKE_BINARY_DIR}/src to target_include_directories(). - debian/: Prepare release v0.6.0. Update packaging from Debian unstable. - tests/test-libappindicator-fallback-watcher.c: Increase test timeout, fix unit test on riscv64. - Add support for tooltips. - Add macros for compile-time version checking. - Use symlink in the build directory for includes. - Revert "Explicitly mark deprecated functions and use substitutes". - Implement the Activate D-Bus method for primary click handling. --- AUTHORS | 120 ++++++++++++++++++++---------------------- CMakeLists.txt | 2 +- ChangeLog | 39 +++++++++++++- NEWS | 13 +++++ bindings/mono/AssemblyInfo.cs | 2 +- debian/changelog | 9 +++- 6 files changed, 117 insertions(+), 68 deletions(-) diff --git a/AUTHORS b/AUTHORS index bff331b..efd9b20 100644 --- a/AUTHORS +++ b/AUTHORS @@ -1,63 +1,57 @@ -Alberts Muktupāvels -Alfred Wingate -Allan LeSage -Aurélien Gâteau -Aurelien Gateau -C10uD -Charles Kerr -Chris Coulson -Chris J Arges -Cody Russell -Cody Russell -Colin Watson -Conor Curran -Didier Roche -Dmitry Shachnev -Emmanuele Bassi -Evgeni Golov -György Balló -Iain Lane -Jan Arne Petersen -Jason Smith -Jason Smith -Javier Jardón -Jeremy Bicha -John Vert -Jo Shields -Ken Vandine -Ken VanDine -Krzysztof Klimonda -Krzysztof Klimonda -Lars Uebernickel -Luca Weiss -Łukasz 'sil2100' Zemczak -Luke Yelavich -Marco Trevisan (Treviño) -Marco Trevisan (Treviño) -Martin Pitt -Mathieu Trudel-Lapierre -Matthias Klose -Michael Terry -Michael Terry -Michael Vogt -Michal Hruby -Mike Gabriel -Neil Jagdish Patel -Neil J. Patel -Robert Ancell -Robert Bruce Park -Robert Collins -Robert Tari -Sebastien Bacher -Sebastien Bacher -Sense Egbert Hofstede -Sense Hofstede -Sense Hofstede -Sergey Fedorov -Ted Gould -Ted Gould -Till Maas -unknown -unknown -William Pettersson -Артём Попов +Alberts Muktupāvels +Alfred Wingate +Allan LeSage +Aurelien Gateau +Aurélien Gâteau +Aurelien Jarno +C10uD +Charles Kerr +Chris Coulson +Chris J Arges +Cody Russell +Colin Watson +Conor Curran +Didier Roche +Dmitry Shachnev +Emmanuele Bassi +Evgeni Golov +Guido Berhoerster +György Balló +Iain Lane +Jan Arne Petersen +Jason Smith +Javier Jardón +Jeremy Bicha +John Vert +Jo Shields +Ken Vandine +Ken VanDine +Krzysztof Klimonda +Lars Uebernickel +Luca Weiss +Łukasz 'sil2100' Zemczak +Luke Yelavich +Marco Trevisan (Treviño) +Martin Pitt +Mathieu Trudel-Lapierre +Matthias Klose +Michael Terry +Michael Vogt +Michal Hruby +Mike Gabriel +Mikhail Novosyolov +Neil Jagdish Patel +Neil J Patel +Robert Ancell +Robert Bruce Park +Robert Collins +Robert Tari +Sebastien Bacher +Sense Egbert Hofstede +Sense Hofstede +Sergey Fedorov +Ted Gould +Till Maas +Unknown +William Pettersson +Артём Попов diff --git a/CMakeLists.txt b/CMakeLists.txt index cd98b4c..2de7768 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,7 +4,7 @@ project(libayatana-appindicator LANGUAGES C ) -set(PROJECT_VERSION "0.5.94") +set(PROJECT_VERSION "0.6.0") set(PROJECT_NAME "libayatana-appindicator") if(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT) diff --git a/ChangeLog b/ChangeLog index 0592ceb..ea6c997 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,43 @@ +2026-06-10 Mike Gabriel + + * Release 0.6.0 (HEAD -> main, tag: 0.6.0) + * CMake: Add ${CMAKE_BINARY_DIR}/src to target_include_directories() + (540df103) + * debian/: Prepare release v0.6.0. Update packaging from Debian + unstable. (3bca2cde) + +2026-06-10 Aurelien Jarno + + * tests/test-libappindicator-fallback-watcher.c: Increase test + timeout, fix unit test on riscv64. (54e1f824) + +2026-06-10 Mike Gabriel + + * Merge branch 'sunweaver-pr/tooltip-support' (13fa5796) + +2021-03-01 Guido Berhoerster + + * Add support for tooltips (bfef7f60) + * Add macros for compile-time version checking (808727b9) + +2023-03-24 Guido Berhoerster + + * Use symlink in the build directory for includes (2ea7c4ae) + +2026-06-10 Mike Gabriel + + * Revert "Explicitly mark deprecated functions and use substitutes" + (0a1de621) + * Merge branch 'mikhailnov-activate-signal' (c45150ea) + +2026-04-28 Mikhail Novosyolov + + * Implement the Activate D-Bus method for primary click handling + (90ce95a6) + 2025-03-12 Mike Gabriel - * release 0.5.94 (HEAD -> main, tag: 0.5.94) + * release 0.5.94 (31e8bb08) (tag: 0.5.94) * Merge branch 'tari01-pr/add-deprecation' (739dc8d3) 2025-03-07 Robert Tari diff --git a/NEWS b/NEWS index aca1f2e..b18433a 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,16 @@ +Overview of changes in libayatana-appindicator 0.6.0 + + - CMake: Add ${CMAKE_BINARY_DIR}/src to target_include_directories(). + - debian/: Prepare release v0.6.0. Update packaging from Debian + unstable. + - tests/test-libappindicator-fallback-watcher.c: Increase test + timeout, fix unit test on riscv64. + - Add support for tooltips. + - Add macros for compile-time version checking. + - Use symlink in the build directory for includes. + - Revert "Explicitly mark deprecated functions and use substitutes". + - Implement the Activate D-Bus method for primary click handling. + Overview of changes in libayatana-appindicator 0.5.94 - Fix build on macOS. diff --git a/bindings/mono/AssemblyInfo.cs b/bindings/mono/AssemblyInfo.cs index 4941ec3..c9c5f32 100644 --- a/bindings/mono/AssemblyInfo.cs +++ b/bindings/mono/AssemblyInfo.cs @@ -27,4 +27,4 @@ using System.Reflection; [assembly: AssemblyCopyright ("© 2010 Canonical, Ltd.; © 2015 Mike Gabriel; © 2021 Robert Tari")] [assembly: AssemblyTrademark ("")] [assembly: AssemblyCulture ("")] -[assembly: AssemblyVersion ("0.5.94.0")] +[assembly: AssemblyVersion ("0.6.0.0")] diff --git a/debian/changelog b/debian/changelog index 3550893..801ae1f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,9 +1,14 @@ -libayatana-appindicator (0.6.0) UNRELEASED; urgency=medium +libayatana-appindicator (0.6.0) unstable; urgency=medium + [ Mike Gabriel ] * Upstream-provided Debian package for libayatana-appindicator. See upstream ChangeLog for recent changes. - -- Mike Gabriel Wed, 10 Jun 2026 17:26:56 +0200 + [ UBports developers ] + * Upstream-provided Debian package for libayatana-appindicator. See + upstream ChangeLog for recent changes. + + -- UBports developers Wed, 10 Jun 2026 17:49:07 +0200 libayatana-appindicator (0.5.94-0) unstable; urgency=medium -- cgit v1.2.3