aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2020-07-23 08:33:14 +0200
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2020-07-23 08:33:14 +0200
commitc43a76e643ab930725d20d306bc3ca5e7874eebe (patch)
tree3a5e3e9cf142d364149325d66a328be6275a1d99
parentc11784bad17f2c7316da3d2c693bff180f3eccde (diff)
downloadlibayatana-appindicator-c43a76e643ab930725d20d306bc3ca5e7874eebe.tar.gz
libayatana-appindicator-c43a76e643ab930725d20d306bc3ca5e7874eebe.tar.bz2
libayatana-appindicator-c43a76e643ab930725d20d306bc3ca5e7874eebe.zip
release 0.5.50.5.5
-rw-r--r--ChangeLog58
-rw-r--r--NEWS41
-rw-r--r--bindings/mono/AssemblyInfo.cs2
-rw-r--r--bindings/mono/Makefile.am2
-rw-r--r--configure.ac2
-rw-r--r--debian/changelog7
6 files changed, 107 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 134f57d..44d27c7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,60 @@
-2019-11-11 19:13:01 +0100 Mike Gabriel (7d9a2e5)
+2020-07-23 08:33:14 +0200 Mike Gabriel
- * release 0.5.4 (HEAD -> master, tag: 0.5.4)
+ * release 0.5.5 (HEAD -> master, tag: 0.5.5)
+
+2020-07-23 08:11:05 +0200 Mike Gabriel (c11784b)
+
+ * debian/rules: Explicitly set XDG_CACHE_HOME during unit tests, too.
+ Hope this amends the dconf errors spotted lately.
+
+2020-07-23 08:09:15 +0200 Mike Gabriel (91ec65e)
+
+ * debian/rules: Fix dh_auto_test call in dotest-%: target.
+
+2020-07-23 08:08:54 +0200 Mike Gabriel (71dfd0a)
+
+ * debian/control: Drop R³ field again, it causes FTBFS on Ubuntu
+ bionic in their version of dh_makeclilibs.
+
+2020-07-23 07:49:13 +0200 Mike Gabriel (05ebffc)
+
+ * debian/rules: Drop more Python2 build stuff, esp. references to
+ Py2-version specific builds.
+
+2020-07-23 07:48:47 +0200 Mike Gabriel (1c48b44)
+
+ * debian/changelog: Fix typo in previous changelog stanza's date.
+
+2020-07-22 21:48:38 +0200 Mike Gabriel (50e147a)
+
+ * configure.ac: Drop Python section that configured the build for
+ Python2 bindings.
+
+2020-07-20 13:15:38 +0200 Mike Gabriel (6af5e32)
+
+ * configure.ac: No more reference to Python2 ayatana_appindicator
+ bindings.
+
+2020-07-19 00:07:07 +0200 Mike Gabriel (7373261)
+
+ * debian/rules: Drop reference to python2 build of remove bin:pkg
+ python-ayatana-appindicator.
+
+2020-07-18 17:10:36 +0200 Mike Gabriel (43dc072)
+
+ * debian/control: Port over changes from official Debian packaging.
+
+2020-07-18 17:09:55 +0200 Mike Gabriel (8c4c6db)
+
+ * bindings/pyton: Drop Python2/Gtk-2 bindings.
+
+2020-07-18 17:08:41 +0200 Mike Gabriel (eb5ffbb)
+
+ * debian/*: Drop Python2 binding support.
+
+2019-11-11 19:13:01 +0100 Mike Gabriel (5ca235f)
+
+ * release 0.5.4 (tag: 0.5.4)
2019-08-29 18:12:10 +0000 Mike Gabriel (e7acaf9)
diff --git a/NEWS b/NEWS
index e69de29..1560fe3 100644
--- a/NEWS
+++ b/NEWS
@@ -0,0 +1,41 @@
+Overview of changes in libayatana-appindicator 0.5.5
+
+ - Drop Python2 support.
+
+Overview of changes in libayatana-appindicator 0.5.4
+
+ - Drop deprecated g_type_class_add_private Glib-2.0 API calls.
+
+Overview of changes in libayatana-appindicator 0.5.3
+
+ - src/app-indicator.c: Type cast assignments from g_object_ref().
+ - Drop distcheck features
+
+Overview of changes in libayatana-appindicator 0.5.2
+
+ - python2 bindings: Finally avoid implicit declaration for
+ (_ayatana)_appindicator_add_constants() function symbol.
+ - API documentation: Suppress some warnings being thrown.
+ - src/app-indicator.c: Avoid usage of PATH_MAX macro. Fixes
+ FTBFS on Debian GNU/Hurd.
+ - bindings/mono/Makefile.am: Don't run tests on all targets,
+ only on check target. Fixes FTBFS when built parallely.
+ - bindings/python: Yet another 'ayatana' namespace fix for the
+ Python2 bindings.
+
+Overview of changes in libayatana-appindicator 0.5.1
+
+ - Python2 bindings: Fix import ayatana_appindicator failure by
+ correctly adding the ayatana namespace.
+ - docs/reference/Makefile.am: Drop option --nogtkinit from
+ SCANGOBJ_OPTIONS.
+ - AppIndicator: fix icon and theme paths when running in $SNAP
+ environment.
+ - Handle watcher service appearing and disappearing.
+ - Make test-simple-app really working.
+ - src/dbus-shared.h: Fix copy+paste flaw for
+ INDICATOR_APPLICATION_DBUS_OBJ.
+
+Overview of changes in libayatana-appindicator 0.5.0
+
+ - Fork from Ubuntu's libappindicator project.
diff --git a/bindings/mono/AssemblyInfo.cs b/bindings/mono/AssemblyInfo.cs
index eac32b7..297eda2 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")]
[assembly: AssemblyTrademark ("")]
[assembly: AssemblyCulture ("")]
-[assembly: AssemblyVersion ("0.5.4.0")]
+[assembly: AssemblyVersion ("0.5.5.0")]
diff --git a/bindings/mono/Makefile.am b/bindings/mono/Makefile.am
index 351db24..3777e1b 100644
--- a/bindings/mono/Makefile.am
+++ b/bindings/mono/Makefile.am
@@ -12,7 +12,7 @@ MIDDLE_API = libayatana-appindicator-api.middle
RAW_API = libayatana-appindicator-api.raw
METADATA = libayatana-appindicator-api.metadata
ASSEMBLY_NAME = ayatana-appindicator-sharp
-ASSEMBLY_VERSION = 0.5.4.0
+ASSEMBLY_VERSION = 0.5.5.0
ASSEMBLY = $(ASSEMBLY_NAME).dll
POLICY = policy.$(POLICY_VERSION).$(ASSEMBLY_NAME)
POLICY_VERSION = 0.0
diff --git a/configure.ac b/configure.ac
index 46bcc37..7c617fe 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
AC_INIT([libayatana-appindicator],
- [0.5.4],
+ [0.5.5],
[https://github.com/ArcticaProject/libayatana-appindicator/issues],
[libayatana-appindicator],
[https://github.com/ArcticaProject/libayatana-appindicator])
diff --git a/debian/changelog b/debian/changelog
index 028a8f0..b10bdca 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+libayatana-appindicator (0.5.5-0) unstable; urgency=medium
+
+ * Upstream-provided Debian package for libayatana-appindicator.
+ See upstream ChangeLog for recent changes.
+
+ -- Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Thu, 23 Jul 2020 08:19:48 +0200
+
libayatana-appindicator (0.5.4-0) unstable; urgency=medium
* Upstream-provided Debian package for libayatana-appindicator.