summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-08-23 04:29:11 +0000
committerDavid Robillard <d@drobilla.net>2012-08-23 04:29:11 +0000
commite521717591396e73e3f73f4985f2bd4de532b8c7 (patch)
treeb2e34bb589eb612f71728494d34bc1b287d0bcc6
parent8039ffb59e79e6df26a338ebe26021a0a2a8681c (diff)
downloadsord-e521717591396e73e3f73f4985f2bd4de532b8c7.tar.gz
sord-e521717591396e73e3f73f4985f2bd4de532b8c7.tar.bz2
sord-e521717591396e73e3f73f4985f2bd4de532b8c7.zip
Sord 0.10.0
git-svn-id: http://svn.drobilla.net/sord/trunk@258 3d64ff67-21c5-427c-a301-fe4f08042e5a
-rw-r--r--NEWS5
-rw-r--r--wscript4
2 files changed, 5 insertions, 4 deletions
diff --git a/NEWS b/NEWS
index fa0502e..4c7f6a8 100644
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,4 @@
-sord (9999) unstable;
+sord (0.10.0) stable;
* Add error callback to world for custom error reporting
* Performance and space (per node) improvements
@@ -6,6 +6,7 @@ sord (9999) unstable;
* Make all 'zix' symbols private to avoid symbol clashes in static builds
* Remove problematic "Loaded n statements" output from serdi
* Strip down API documentation to a single clean page
+ * Fix various hyper-strict warnings
* Do not require a C++ compiler to build
* Add option to build utilities as static binaries
* Upgrade to waf 1.7.2
@@ -13,7 +14,7 @@ sord (9999) unstable;
* sordmm.hpp: Remove overzealous URI scheme assertion
* sordmm.hpp: Correctly handle Sord::Node self-assignment
- -- David Robillard <d@drobilla.net>
+ -- David Robillard <d@drobilla.net> Thu, 23 Aug 2012 00:19:51 -0400
sord (0.8.0) stable;
diff --git a/wscript b/wscript
index fd354e2..3287e93 100644
--- a/wscript
+++ b/wscript
@@ -7,7 +7,7 @@ from waflib.extras import autowaf as autowaf
import waflib.Logs as Logs, waflib.Options as Options
# Version of this package (even if built as a child)
-SORD_VERSION = '0.9.0'
+SORD_VERSION = '0.10.0'
SORD_MAJOR_VERSION = '0'
# Library version (UNIX style major, minor, micro)
@@ -56,7 +56,7 @@ def configure(conf):
autowaf.display_header('Sord configuration')
autowaf.check_pkg(conf, 'serd-0', uselib_store='SERD',
- atleast_version='0.14.0', mandatory=True)
+ atleast_version='0.18.0', mandatory=True)
autowaf.check_pkg(conf, 'libpcre', uselib_store='PCRE', mandatory=False)
conf.env.BUILD_TESTS = Options.options.build_tests