author | Aleksandar Samardžić <asamardzic@matf.bg.ac.rs> | 2012年11月29日 12:08:45 +0100 |
---|---|---|
committer | Aleksandar Samardžić <asamardzic@matf.bg.ac.rs> | 2012年11月29日 12:08:45 +0100 |
commit | e89e78c98e22d94f5dc0215b097b1bc28054d925 (patch) | |
tree | 1d1fced894019fe99b183d5a41eb909713199b7d | |
parent | 2d25d26f61aff726dce55d86f61c1a87442ec4d0 (diff) | |
download | libmatheval-e89e78c98e22d94f5dc0215b097b1bc28054d925.tar.gz |
-rw-r--r-- | NEWS | 5 | ||||
-rw-r--r-- | configure.in | 4 | ||||
-rw-r--r-- | libmatheval.pc.in | 2 | ||||
-rw-r--r-- | tests/package.m4 | 4 |
@@ -6,6 +6,11 @@ permitted in any medium without royalty provided the copyright notice and this notice are preserved. +Version 1.1.10 + +* Fixed memory leak in evaluator_create function implementation. + + Version 1.1.9 * Fixed bug in math_step function implementation. diff --git a/configure.in b/configure.in index 462b448..1be3401 100644 --- a/configure.in +++ b/configure.in @@ -19,11 +19,11 @@ dnl <http://www.gnu.org/licenses/>. dnl Process this file with autoconf to produce a configure script. AC_PREREQ(2.53) -AC_INIT([libmatheval],[1.1.9],[asamardzic@gnu.org]) +AC_INIT([libmatheval],[1.1.10],[asamardzic@gnu.org]) AC_CONFIG_AUX_DIR([config]) AC_CONFIG_MACRO_DIR([m4]) AC_SUBST([ac_aux_dir]) -AM_INIT_AUTOMAKE([libmatheval], [1.1.9]) +AM_INIT_AUTOMAKE([libmatheval], [1.1.10]) AC_CONFIG_SRCDIR([configure.in]) AM_CONFIG_HEADER([config.h]) diff --git a/libmatheval.pc.in b/libmatheval.pc.in index 30eeb28..91c7484 100644 --- a/libmatheval.pc.in +++ b/libmatheval.pc.in @@ -24,7 +24,7 @@ includedir=@includedir@ Name: libmatheval Description: Library of functions for evaluating mathematical expressions -Version: 1.1.9 +Version: 1.1.10 Libs: -L${libdir} -lmatheval Libs.private: @LEXLIB@ -lm Cflags: -I${includedir} diff --git a/tests/package.m4 b/tests/package.m4 index 22a2348..67d11f9 100644 --- a/tests/package.m4 +++ b/tests/package.m4 @@ -1,6 +1,6 @@ # Signature of the current package. m4_define([AT_PACKAGE_NAME], [libmatheval]) m4_define([AT_PACKAGE_TARNAME], [libmatheval]) -m4_define([AT_PACKAGE_VERSION], [1.1.9]) -m4_define([AT_PACKAGE_STRING], [libmatheval 1.1.9]) +m4_define([AT_PACKAGE_VERSION], [1.1.10]) +m4_define([AT_PACKAGE_STRING], [libmatheval 1.1.10]) m4_define([AT_PACKAGE_BUGREPORT], [asamardzic@gnu.org]) |