diff --git a/CHANGELOG b/CHANGELOG index 3da4ebc1..529c9a1b 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,7 @@ +0.8.5 -> 0.8.6 + +- Fix GSettings crash with GNOME 40 due to missing "antialias" setting + 0.8.4 -> 0.8.5 - Fix FTBFS with Vala >= 0.52 diff --git a/build-aux/Makefile b/build-aux/Makefile index 4ef92db0..cb4950a6 100644 --- a/build-aux/Makefile +++ b/build-aux/Makefile @@ -1,6 +1,6 @@ PACKAGE_NAME = font-manager -PACKAGE_VERSION = 0.8.5 +PACKAGE_VERSION = 0.8.6 ABS_TOP_SRCDIR = $(shell realpath ../) ABS_SRCDIR = $(shell realpath .) diff --git a/debian/changelog b/debian/changelog index 6065f7a9..36e97a02 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -font-manager (0.8.5-1ubuntu1) UNRELEASED; urgency=medium +font-manager (0.8.6-1ubuntu1) UNRELEASED; urgency=medium * Refer to https://github.com/FontManager/master/commits/master. diff --git a/fedora/font-manager.spec b/fedora/font-manager.spec index 4c0198b5..54e018f0 100644 --- a/fedora/font-manager.spec +++ b/fedora/font-manager.spec @@ -1,6 +1,6 @@ %global MajorVersion 0 %global MinorVersion 8 -%global PatchVersion 5 +%global PatchVersion 6 %global build_timestamp %{lua: print(os.date("%Y%m%d"))} %global DBusName org.gnome.FontManager %global DBusName2 org.gnome.FontViewer @@ -8,7 +8,7 @@ Name: font-manager Version: %{MajorVersion}.%{MinorVersion}.%{PatchVersion}.%{build_timestamp} -Release: 3 +Release: 1 Summary: A simple font management application for Gtk+ Desktop Environments License: GPLv3+ Url: http://fontmanager.github.io/ @@ -141,5 +141,5 @@ appstream-util validate-relax --nonet %{buildroot}/%{_datadir}/metainfo/*.appdat %{_libdir}/thunarx-3/thunar-%{name}.so %changelog -* Tue Dec 1 2020 JerryCasiano 0.8.5-3 +* Tue Dec 1 2020 JerryCasiano 0.8.6-1 - Refer to https://github.com/FontManager/font-manager/commits/master for changes. diff --git a/meson.build b/meson.build index 46a7265f..f09cbfdf 100644 --- a/meson.build +++ b/meson.build @@ -1,4 +1,4 @@ -project('font-manager', ['c', 'vala'], license: 'GPL3', version: '0.8.5') +project('font-manager', ['c', 'vala'], license: 'GPL3', version: '0.8.6') if meson.version().version_compare('< 0.53') error('Meson version is @0@ but project requires >= 0.53'.format(meson.version()))