Release 0.4.12
authorDavid Schleef <ds@schleef.org>
Thu, 14 Apr 2011 20:02:52 +0000 (13:02 -0700)
committerDavid Schleef <ds@schleef.org>
Thu, 14 Apr 2011 20:02:52 +0000 (13:02 -0700)
RELEASE
configure.ac

diff --git a/RELEASE b/RELEASE
index a2629c6..175bdbc 100644 (file)
--- a/RELEASE
+++ b/RELEASE
@@ -1,4 +1,24 @@
 
+0.4.12
+======
+
+This is primarily a bug fixing release.
+
+ - Fix gcc-4.6 warnings in generated code
+ - Codegen fixes for Altivec.  Passes regression tests again.
+ - More error checking for code allocation.
+ - NEON: floating point improvements
+ - Removed stdint.h from API.  This could theoretically cause
+   breakage if you depended on orc to include stdint.h.
+
+One new feature is the OrcCode structure, which keeps track of
+compiled code.  This now allows applications to free unused code.
+
+Internally, x86 code generation was completely refactored to add
+an intermediate stage, which will later be used for instruction
+reordering.  None of this is useful yet.
+
+
 0.4.11
 ======
 
index 876f329..2ee9581 100644 (file)
@@ -1,5 +1,5 @@
 AC_PREREQ([2.58])
-AC_INIT(orc,0.4.11.1)
+AC_INIT(orc,0.4.12)
 dnl don't forget to update libversion
 
 AS_NANO(ORC_CVS=no,ORC_CVS=yes)
@@ -17,7 +17,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="11:0:11"
+ORC_LIBVERSION="12:0:12"
 AC_SUBST(ORC_LIBVERSION)
 AC_LIBTOOL_WIN32_DLL
 AC_LIBTOOL_TAGS([])