summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfalkTX <falktx@falktx.com>2022-04-13 19:02:09 +0100
committerfalkTX <falktx@falktx.com>2022-04-13 19:02:09 +0100
commit88102ec4a73ecb18b58198193905aefe6b378ce5 (patch)
treefe7d337ce68abbdb1b1be0ccc5c57f83cf020f73
parentac00dee3ae5c4d24527c5a30cddf55cef72bc69b (diff)
downloadjack2-88102ec4a73ecb18b58198193905aefe6b378ce5.tar.gz
Bump version to 1.9.21
Signed-off-by: falkTX <falktx@falktx.com>
-rw-r--r--.github/workflows/build.yml11
-rw-r--r--common/JackConstants.h2
-rw-r--r--common/Jackdmp.cpp4
-rw-r--r--wscript3
4 files changed, 7 insertions, 13 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index d0c51b05..a372b725 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -8,10 +8,11 @@ on:
branches:
- '*'
env:
- CACHE_VERSION: 4
+ CACHE_VERSION: 5
DEBIAN_FRONTEND: noninteractive
HOMEBREW_NO_AUTO_UPDATE: 1
PAWPAW_VERSION: 023bccdeffafc4212292072a1eba78d9e709510e
+ PAWPAW_SKIP_LTO: 1
jobs:
# macOS native intel build
@@ -40,8 +41,6 @@ jobs:
./PawPaw/bootstrap-jack2.sh macos && ./PawPaw/.cleanup.sh macos
- name: Build jack2
shell: bash
- env:
- PAWPAW_SKIP_LTO: 1
run: |
pushd PawPaw && source local.env macos && popd
python ./waf configure --platform=darwin --prefix=/usr/local --example-tools
@@ -89,8 +88,6 @@ jobs:
./PawPaw/bootstrap-jack2.sh macos-universal && ./PawPaw/.cleanup.sh macos-universal
- name: Build jack2
shell: bash
- env:
- PAWPAW_SKIP_LTO: 1
run: |
pushd PawPaw && source local.env macos-universal && popd
python ./waf configure --platform=darwin --prefix=/usr/local --example-tools
@@ -151,8 +148,6 @@ jobs:
./PawPaw/bootstrap-jack2.sh win32 && ./PawPaw/.cleanup.sh win32
- name: Build jack2
shell: bash
- env:
- PAWPAW_SKIP_LTO: 1
run: |
pushd PawPaw && source local.env win32 && popd
./waf configure --platform=win32 --prefix=$(pwd)/destdir --static --example-tools
@@ -233,8 +228,6 @@ jobs:
./PawPaw/bootstrap-jack2.sh win64 && ./PawPaw/.cleanup.sh win64
- name: Build jack2
shell: bash
- env:
- PAWPAW_SKIP_LTO: 1
run: |
pushd PawPaw && source local.env win64 && popd
export PATH+=":/usr/i686-w64-mingw32/bin"
diff --git a/common/JackConstants.h b/common/JackConstants.h
index a0b94a57..cf5db13b 100644
--- a/common/JackConstants.h
+++ b/common/JackConstants.h
@@ -24,7 +24,7 @@
#include "config.h"
#endif
-#define VERSION "1.9.20"
+#define VERSION "1.9.21"
#define BUFFER_SIZE_MAX 8192
diff --git a/common/Jackdmp.cpp b/common/Jackdmp.cpp
index 1a5846e7..d387a1f1 100644
--- a/common/Jackdmp.cpp
+++ b/common/Jackdmp.cpp
@@ -1,7 +1,7 @@
/*
Copyright (C) 2001 Paul Davis
Copyright (C) 2004-2013 Grame
-Copyright (C) 2016-2019 Grame
+Copyright (C) 2016-2022 Filipe Coelho
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -97,7 +97,7 @@ static void copyright(FILE* file)
fprintf(file, "jackdmp " VERSION "\n"
"Copyright 2001-2005 Paul Davis and others.\n"
"Copyright 2004-2016 Grame.\n"
- "Copyright 2016-2021 Filipe Coelho.\n"
+ "Copyright 2016-2022 Filipe Coelho.\n"
"jackdmp comes with ABSOLUTELY NO WARRANTY\n"
"This is free software, and you are welcome to redistribute it\n"
"under certain conditions; see the file COPYING for details\n");
diff --git a/wscript b/wscript
index bde2316e..2701f9ab 100644
--- a/wscript
+++ b/wscript
@@ -9,7 +9,8 @@ import sys
from waflib import Logs, Options, TaskGen
from waflib.Build import BuildContext, CleanContext, InstallContext, UninstallContext
-VERSION = '1.9.20'
+# see also common/JackConstants.h
+VERSION = '1.9.21'
APPNAME = 'jack'
JACK_API_VERSION = '0.1.0'