summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Changelog8
-rw-r--r--README.md2
-rw-r--r--configure.ac2
-rw-r--r--libass/Makefile.am2
-rw-r--r--libass/ass.h2
5 files changed, 12 insertions, 4 deletions
diff --git a/Changelog b/Changelog
index 0b9a9a8..1995c44 100644
--- a/Changelog
+++ b/Changelog
@@ -1,3 +1,11 @@
+libass (0.13.4)
+ * Bug fixes found with fuzzing
+ * Fix memory reallocation in the shaper.
+ * Fix two small memory leaks in the parser and test program.
+ * Fix illegal read in Gaussian blur coefficient calculations.
+ * Fix mode 0/3 line wrapping equalization in specific cases which could
+ result in illegal reads while laying out and shaping text.
+
libass (0.13.3)
* Improve compatibility/portablility of build system,
should fix e.g. compilation on Solaris.
diff --git a/README.md b/README.md
index 8ef495b..1497d3c 100644
--- a/README.md
+++ b/README.md
@@ -8,7 +8,7 @@ libass is a portable subtitle renderer for the ASS/SSA (Advanced Substation Alph
Get it
======
-See [GitHub releases](https://github.com/libass/libass/releases) for the latest release 0.13.3 (released 2016-09-24). This is mainly a bug fix release. See the [changelog](https://github.com/libass/libass/blob/master/Changelog) for a detailed list of changes.
+See [GitHub releases](https://github.com/libass/libass/releases) for the latest release 0.13.4 (released 2016-10-05). This is mainly a bug fix release. See the [changelog](https://github.com/libass/libass/blob/master/Changelog) for a detailed list of changes.
Source code is available from our [GitHub repository](https://github.com/libass/libass).
diff --git a/configure.ac b/configure.ac
index bb079d3..6a6dae9 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
-AC_INIT(libass, 0.13.3)
+AC_INIT(libass, 0.13.4)
AM_INIT_AUTOMAKE
AC_CONFIG_MACRO_DIR([m4])
# Disable Fortran checks
diff --git a/libass/Makefile.am b/libass/Makefile.am
index 97bf565..97b6971 100644
--- a/libass/Makefile.am
+++ b/libass/Makefile.am
@@ -3,7 +3,7 @@ AM_CFLAGS = -std=gnu99 -Wall -Wextra -Wno-sign-compare -Wno-unused-parameter \
-Wpointer-arith -Wredundant-decls -D_GNU_SOURCE
LIBASS_LT_CURRENT = 8
-LIBASS_LT_REVISION = 1
+LIBASS_LT_REVISION = 2
LIBASS_LT_AGE = 3
yasm_verbose = $(yasm_verbose_$(V))
diff --git a/libass/ass.h b/libass/ass.h
index 69c5c23..24a4618 100644
--- a/libass/ass.h
+++ b/libass/ass.h
@@ -24,7 +24,7 @@
#include <stdarg.h>
#include "ass_types.h"
-#define LIBASS_VERSION 0x01303000
+#define LIBASS_VERSION 0x01304000
#ifdef __cplusplus
extern "C" {