summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.com>2016-03-05 00:01:25 +0000
committerTim-Philipp Müller <tim@centricular.com>2016-03-05 00:01:25 +0000
commit831886d1f70d3cc21a913b2e335da38af4cae524 (patch)
tree8a69bc2b1b855d2b6eaca861efdb64f05182f7ca
parentc33843d9b50628907c2542d771c730a354543aad (diff)
downloadorc-831886d1f70d3cc21a913b2e335da38af4cae524.tar.gz
Release 0.4.25orc-0.4.25
-rw-r--r--RELEASE18
-rw-r--r--configure.ac4
2 files changed, 20 insertions, 2 deletions
diff --git a/RELEASE b/RELEASE
index d176fe4..7c149aa 100644
--- a/RELEASE
+++ b/RELEASE
@@ -1,3 +1,21 @@
+0.4.25
+======
+
+ - compiler: also prefer the backup function when no target, instead
+ of trying to use emulation which is usually slower (Wim Taymans)
+ - executor: fix load of parameters smaller than 64 bits, fixing crashes
+ on ldresnearb and friends in emulated code (Wim Taymans)
+ - test-limits: improve test without target (Wim Taymans)
+ - Only check for Android's liblog on Android targets, so we don't accidentally
+ pick up another liblog that may exist elsewhere (Sebastian Dröge)
+ - Don't require libtool for uninstalled setups (-uninstalled pkg-config file)
+ (Julien Isorce)
+ - Make -Bsymbolic check in configure work with clang (Koop Mast)
+ - Coverity code analyser fixes (Luis de Bethencourt)
+ - docs: update generated opcode tables
+ - add orc_version_string() function and make orcc check the liborc that is
+ being picked up to make sure the right lib is being used (Tim-Philipp Müller)
+
0.4.24
======
diff --git a/configure.ac b/configure.ac
index ffd2bd6..45b99f8 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
AC_PREREQ([2.68])
-AC_INIT([orc], [0.4.24.1], [http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer&component=orc],[orc])
+AC_INIT([orc], [0.4.25], [http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer&component=orc],[orc])
dnl don't forget to update libversion
AS_NANO(ORC_GIT=no,ORC_GIT=yes)
@@ -22,7 +22,7 @@ dnl - library source changed -> increment REVISION
dnl - interfaces added/removed/changed -> increment CURRENT, REVISION = 0
dnl - interfaces added -> increment AGE
dnl - interfaces removed -> AGE = 0
-ORC_LIBVERSION="23:0:23"
+ORC_LIBVERSION="25:0:25"
AC_SUBST(ORC_LIBVERSION)
LT_PREREQ([2.2.6])
LT_INIT([dlopen win32-dll disable-static])