summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.com>2017-07-17 16:16:35 +0100
committerTim-Philipp Müller <tim@centricular.com>2017-07-17 16:16:35 +0100
commit1163fd1027010ce16ff25bc5448948f4a5073844 (patch)
tree9cb308bf41f853df707f7f179944fa3c1ddec395
parentd78207c2eea30acdbf674210b43f36701c3cb023 (diff)
Release 0.4.27orc-0.4.27
-rw-r--r--RELEASE8
-rw-r--r--configure.ac4
-rw-r--r--meson.build2
3 files changed, 11 insertions, 3 deletions
diff --git a/RELEASE b/RELEASE
index c95226b..a10eb15 100644
--- a/RELEASE
+++ b/RELEASE
@@ -1,3 +1,11 @@
+0.4.27
+======
+
+ - sse: preserve non volatile sse registers, needed for MSVC (Matej Knopp)
+ - x86: don't hard-code register size to zero in orc_x86_emit_*() functions (Igor Rondarev)
+ - Fix incorrect asm generation on 64-bit Windows when building with MSVC (Jan Schmidt)
+ - Support build using the Meson build system (Nirbheek Chauhan, Tim-Philipp Müller)
+
0.4.26
======
diff --git a/configure.ac b/configure.ac
index 3fd3458..265162e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
AC_PREREQ([2.68])
-AC_INIT([orc], [0.4.26.1], [http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer&component=orc],[orc])
+AC_INIT([orc], [0.4.27], [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="25:0:25"
+ORC_LIBVERSION="27:0:27"
AC_SUBST(ORC_LIBVERSION)
LT_PREREQ([2.2.6])
LT_INIT([dlopen win32-dll disable-static])
diff --git a/meson.build b/meson.build
index a947f0e..04090c3 100644
--- a/meson.build
+++ b/meson.build
@@ -1,4 +1,4 @@
-project ('Orc', 'c', version : '0.4.26.1',
+project ('orc', 'c', version : '0.4.27',
meson_version : '>= 0.32.0',
default_options : ['buildtype=debugoptimized',
'warning_level=1',