diff options
author | Alexander Akulich <akulichalexander@gmail.com> | 2020-11-11 01:29:51 +0300 |
---|---|---|
committer | Alexander Akulich <akulichalexander@gmail.com> | 2020-11-11 01:30:27 +0300 |
commit | 5bf92bf86fd92c2c39531431292aa06fc0e981b2 (patch) | |
tree | 937bc8112a06f8d47b70f92d9f4fd5b68d5aa959 | |
parent | 6fcaa04e2211f2dda2e4498239360380261b646c (diff) |
Version 0.8.1telepathy-haze-0.8.1telepathy-haze-0.8
-rw-r--r-- | NEWS | 16 | ||||
-rw-r--r-- | configure.ac | 4 |
2 files changed, 16 insertions, 4 deletions
@@ -1,7 +1,19 @@ -telepathy-haze 0.8.1 (UNRELEASED) +telepathy-haze 0.8.1 (2020-11-11) ================================= -… +Dependencies: +• libpurple ≥ 2.10.12 is now required + +Enhancements: + +• Port tests to Python 3 (Arusekk) + +Fixes: + +• Fix the build with libpurple 2.10.12 (Koop Mast from FreeBSD.org) + +• Fix a crash if a requested contact is already in contact-list + (fd.0 #47005 Debarshi Ray) telepathy-haze 0.8.0 (2013-10-02) ================================= diff --git a/configure.ac b/configure.ac index 1b5ef78..507f571 100644 --- a/configure.ac +++ b/configure.ac @@ -8,8 +8,8 @@ AC_PREREQ([2.59]) m4_define([haze_major_version], [0]) m4_define([haze_minor_version], [8]) -m4_define([haze_micro_version], [0]) -m4_define([haze_nano_version], [1]) +m4_define([haze_micro_version], [1]) +m4_define([haze_nano_version], [0]) m4_define([haze_base_version], [haze_major_version.haze_minor_version.haze_micro_version]) |