Browse Source

Bump version to 1.9.21

Signed-off-by: falkTX <falktx@falktx.com>
tags/v1.9.21
falkTX 3 years ago
parent
commit
88102ec4a7
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
4 changed files with 7 additions and 13 deletions
  1. +2
    -9
      .github/workflows/build.yml
  2. +1
    -1
      common/JackConstants.h
  3. +2
    -2
      common/Jackdmp.cpp
  4. +2
    -1
      wscript

+ 2
- 9
.github/workflows/build.yml View File

@@ -8,10 +8,11 @@ on:
branches: branches:
- '*' - '*'
env: env:
CACHE_VERSION: 4
CACHE_VERSION: 5
DEBIAN_FRONTEND: noninteractive DEBIAN_FRONTEND: noninteractive
HOMEBREW_NO_AUTO_UPDATE: 1 HOMEBREW_NO_AUTO_UPDATE: 1
PAWPAW_VERSION: 023bccdeffafc4212292072a1eba78d9e709510e PAWPAW_VERSION: 023bccdeffafc4212292072a1eba78d9e709510e
PAWPAW_SKIP_LTO: 1


jobs: jobs:
# macOS native intel build # macOS native intel build
@@ -40,8 +41,6 @@ jobs:
./PawPaw/bootstrap-jack2.sh macos && ./PawPaw/.cleanup.sh macos ./PawPaw/bootstrap-jack2.sh macos && ./PawPaw/.cleanup.sh macos
- name: Build jack2 - name: Build jack2
shell: bash shell: bash
env:
PAWPAW_SKIP_LTO: 1
run: | run: |
pushd PawPaw && source local.env macos && popd pushd PawPaw && source local.env macos && popd
python ./waf configure --platform=darwin --prefix=/usr/local --example-tools 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 ./PawPaw/bootstrap-jack2.sh macos-universal && ./PawPaw/.cleanup.sh macos-universal
- name: Build jack2 - name: Build jack2
shell: bash shell: bash
env:
PAWPAW_SKIP_LTO: 1
run: | run: |
pushd PawPaw && source local.env macos-universal && popd pushd PawPaw && source local.env macos-universal && popd
python ./waf configure --platform=darwin --prefix=/usr/local --example-tools python ./waf configure --platform=darwin --prefix=/usr/local --example-tools
@@ -151,8 +148,6 @@ jobs:
./PawPaw/bootstrap-jack2.sh win32 && ./PawPaw/.cleanup.sh win32 ./PawPaw/bootstrap-jack2.sh win32 && ./PawPaw/.cleanup.sh win32
- name: Build jack2 - name: Build jack2
shell: bash shell: bash
env:
PAWPAW_SKIP_LTO: 1
run: | run: |
pushd PawPaw && source local.env win32 && popd pushd PawPaw && source local.env win32 && popd
./waf configure --platform=win32 --prefix=$(pwd)/destdir --static --example-tools ./waf configure --platform=win32 --prefix=$(pwd)/destdir --static --example-tools
@@ -233,8 +228,6 @@ jobs:
./PawPaw/bootstrap-jack2.sh win64 && ./PawPaw/.cleanup.sh win64 ./PawPaw/bootstrap-jack2.sh win64 && ./PawPaw/.cleanup.sh win64
- name: Build jack2 - name: Build jack2
shell: bash shell: bash
env:
PAWPAW_SKIP_LTO: 1
run: | run: |
pushd PawPaw && source local.env win64 && popd pushd PawPaw && source local.env win64 && popd
export PATH+=":/usr/i686-w64-mingw32/bin" export PATH+=":/usr/i686-w64-mingw32/bin"


+ 1
- 1
common/JackConstants.h View File

@@ -24,7 +24,7 @@
#include "config.h" #include "config.h"
#endif #endif


#define VERSION "1.9.20"
#define VERSION "1.9.21"


#define BUFFER_SIZE_MAX 8192 #define BUFFER_SIZE_MAX 8192




+ 2
- 2
common/Jackdmp.cpp View File

@@ -1,7 +1,7 @@
/* /*
Copyright (C) 2001 Paul Davis Copyright (C) 2001 Paul Davis
Copyright (C) 2004-2013 Grame 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 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 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" fprintf(file, "jackdmp " VERSION "\n"
"Copyright 2001-2005 Paul Davis and others.\n" "Copyright 2001-2005 Paul Davis and others.\n"
"Copyright 2004-2016 Grame.\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" "jackdmp comes with ABSOLUTELY NO WARRANTY\n"
"This is free software, and you are welcome to redistribute it\n" "This is free software, and you are welcome to redistribute it\n"
"under certain conditions; see the file COPYING for details\n"); "under certain conditions; see the file COPYING for details\n");


+ 2
- 1
wscript View File

@@ -9,7 +9,8 @@ import sys
from waflib import Logs, Options, TaskGen from waflib import Logs, Options, TaskGen
from waflib.Build import BuildContext, CleanContext, InstallContext, UninstallContext from waflib.Build import BuildContext, CleanContext, InstallContext, UninstallContext


VERSION = '1.9.20'
# see also common/JackConstants.h
VERSION = '1.9.21'
APPNAME = 'jack' APPNAME = 'jack'
JACK_API_VERSION = '0.1.0' JACK_API_VERSION = '0.1.0'




Loading…
Cancel
Save