diff options
author | David Robillard <d@drobilla.net> | 2017-01-04 11:51:03 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2017-01-04 11:51:03 -0500 |
commit | d2de1ed3abdbbf146c13001c2bc932a2dc52e615 (patch) | |
tree | 55336eb6fe2ab5f499ec5e8d38a89128a7f661fe | |
parent | 0b7f54a7a07b55538038351778ac7fcc6c75db0f (diff) | |
download | lilv-d2de1ed3abdbbf146c13001c2bc932a2dc52e615.tar.gz lilv-d2de1ed3abdbbf146c13001c2bc932a2dc52e615.tar.bz2 lilv-d2de1ed3abdbbf146c13001c2bc932a2dc52e615.zip |
Lilv 0.24.2v0.24.2
-rw-r--r-- | COPYING | 2 | ||||
-rw-r--r-- | NEWS | 5 | ||||
-rw-r--r-- | bindings/python/conf.py | 4 | ||||
-rw-r--r-- | src/state.c | 2 | ||||
-rw-r--r-- | wscript | 2 |
5 files changed, 8 insertions, 7 deletions
@@ -1,4 +1,4 @@ -Copyright 2011-2016 David Robillard <http://drobilla.net> +Copyright 2011-2017 David Robillard <http://drobilla.net> Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above @@ -1,8 +1,9 @@ -lilv (0.24.1) unstable; +lilv (0.24.2) stable; + * Fix saving state to paths that contain URI delimiters (#, ?, etc) * Fix comparison of restored states with paths - -- David Robillard <d@drobilla.net> Mon, 26 Sep 2016 12:51:37 -0400 + -- David Robillard <d@drobilla.net> Wed, 04 Jan 2017 11:48:08 -0500 lilv (0.24.0) stable; diff --git a/bindings/python/conf.py b/bindings/python/conf.py index 2a6e5ad..576919e 100644 --- a/bindings/python/conf.py +++ b/bindings/python/conf.py @@ -56,9 +56,9 @@ copyright = u'2016, David Robillard' # built documents. # # The short X.Y version. -version = '0.24.0' +version = '0.24.2' # The full version, including alpha/beta/rc tags. -release = '0.24.0' +release = '0.24.2' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/src/state.c b/src/state.c index aef7733..86b4bfc 100644 --- a/src/state.c +++ b/src/state.c @@ -1,5 +1,5 @@ /* - Copyright 2007-2016 David Robillard <http://drobilla.net> + Copyright 2007-2017 David Robillard <http://drobilla.net> Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above @@ -12,7 +12,7 @@ import waflib.Logs as Logs # major increment <=> incompatible changes # minor increment <=> compatible changes (additions) # micro increment <=> no interface changes -LILV_VERSION = '0.24.0' +LILV_VERSION = '0.24.2' LILV_MAJOR_VERSION = '0' # Mandatory waf variables |