summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS4
-rw-r--r--wscript19
2 files changed, 9 insertions, 14 deletions
diff --git a/NEWS b/NEWS
index 25a5f61..5d72bc5 100644
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,4 @@
-ganv (1.4.3) unstable;
+ganv (1.6.0) stable;
* Add API to specify module port order.
* Add support for PDF and PS export.
@@ -20,7 +20,7 @@ ganv (1.4.3) unstable;
* Preserve selection for quickly making several connections.
* Upgrade to waf 2.0.19
- -- David Robillard <d@drobilla.net> Thu, 09 Apr 2020 10:42:58 +0000
+ -- David Robillard <d@drobilla.net> Thu, 09 Apr 2020 11:45:01 +0000
ganv (1.4.2) stable;
diff --git a/wscript b/wscript
index 8b94a15..37487e9 100644
--- a/wscript
+++ b/wscript
@@ -9,7 +9,7 @@ from waflib.extras import autowaf
# major increment <=> incompatible changes
# minor increment <=> compatible changes (additions)
# micro increment <=> no interface changes
-GANV_VERSION = '1.5.4'
+GANV_VERSION = '1.6.0'
GANV_MAJOR_VERSION = '1'
# Mandatory waf variables
@@ -18,6 +18,12 @@ VERSION = GANV_VERSION # Package version for waf dist
top = '.' # Source directory
out = 'build' # Build directory
+# Release variables
+uri = 'http://drobilla.net/sw/ganv'
+dist_pattern = 'http://download.drobilla.net/ganv-%d.%d.%d.tar.bz2'
+post_tags = ['Hacking', 'LAD', 'Ganv']
+
+
def options(ctx):
ctx.load('compiler_c')
ctx.load('compiler_cxx')
@@ -229,14 +235,3 @@ def build(bld):
def i18n(bld):
autowaf.build_i18n(bld, '..', 'ganv', APPNAME, ganv_source,
'David Robillard')
-
-def posts(ctx):
- path = str(ctx.path.abspath())
- autowaf.news_to_posts(
- os.path.join(path, 'NEWS'),
- {'title' : 'Ganv',
- 'description' : autowaf.get_blurb(os.path.join(path, 'README')),
- 'dist_pattern' : 'http://download.drobilla.net/ganv-%s.tar.bz2'},
- { 'Author' : 'drobilla',
- 'Tags' : 'Hacking, LAD, LV2, Ganv' },
- os.path.join(out, 'posts'))