From ebce23f753426bf6f35da401c59f6a99e17e3ae3 Mon Sep 17 00:00:00 2001 From: Stephane Letz Date: Sun, 14 May 2023 18:57:40 +0200 Subject: [PATCH] Set version to 2.59.6. --- .github/workflows/libfaust.yml | 2 +- COPYING.txt | 2 +- Makefile | 2 +- architecture/faust/export.h | 4 ++-- build/CMakeLists.txt | 2 +- build/MakeRelease.bat | 2 +- build/Makefile | 2 +- compiler/README.md | 2 +- documentation/compiler/Doxyfile | 2 +- documentation/libfaust/Doxyfile | 2 +- documentation/libfaustremote/Doxyfile | 2 +- documentation/man/README.md | 2 +- documentation/man/man-header.txt | 2 +- documentation/man/man1/faust.1 | 2 +- tools/faust-config | 2 +- windows/faust.rc | 8 ++++---- windows/faustdll.rc | 8 ++++---- 17 files changed, 24 insertions(+), 24 deletions(-) diff --git a/.github/workflows/libfaust.yml b/.github/workflows/libfaust.yml index cfacab033c..cd26212e3e 100644 --- a/.github/workflows/libfaust.yml +++ b/.github/workflows/libfaust.yml @@ -1,7 +1,7 @@ name: libfaust env: - FAUST_VERSION: 2.59.5 + FAUST_VERSION: 2.59.6 FAUSTGEN_VERSION: 1.64 LLVM_PACKAGE_VERSION: 15.0.7 CMAKE_OSX_DEPLOYMENT_TARGET: 10.15 diff --git a/COPYING.txt b/COPYING.txt index 8cb97b7d3f..9db1fe99b3 100644 --- a/COPYING.txt +++ b/COPYING.txt @@ -1,4 +1,4 @@ - FAUST compiler, Version 2.59.5 + FAUST compiler, Version 2.59.6 Copyright (C) 2003-2019 GRAME, Centre National de Creation Musicale --------------------------------------------------------------------- This program is free software; you can redistribute it and/or modify diff --git a/Makefile b/Makefile index f3f0879d23..958a0e5e56 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -version := 2.59.5 +version := 2.59.6 system ?= $(shell uname -s) diff --git a/architecture/faust/export.h b/architecture/faust/export.h index 0ebfd79cdf..bdbebde36f 100644 --- a/architecture/faust/export.h +++ b/architecture/faust/export.h @@ -26,12 +26,12 @@ #define __export__ // Version as a global string -#define FAUSTVERSION "2.59.5" +#define FAUSTVERSION "2.59.6" // Version as separated [major,minor,patch] values #define FAUSTMAJORVERSION 2 #define FAUSTMINORVERSION 59 -#define FAUSTPATCHVERSION 5 +#define FAUSTPATCHVERSION 6 // Use FAUST_API for code that is part of the external API but is also compiled in faust and libfaust // Use LIBFAUST_API for code that is compiled in faust and libfaust diff --git a/build/CMakeLists.txt b/build/CMakeLists.txt index d4b8423da6..56b09d4fb5 100644 --- a/build/CMakeLists.txt +++ b/build/CMakeLists.txt @@ -3,7 +3,7 @@ project (faust) ####################################### # versions management -set (VERSION 2.59.5) +set (VERSION 2.59.6) macro (get_major_minor_patch version) string( REGEX REPLACE "([0-9]*)\\.([0-9]*)\\.([0-9]*)" "\\1" VERSION_MAJOR ${version} ) string( REGEX REPLACE "([0-9]*)\\.([0-9]*)\\.([0-9]*)" "\\2" VERSION_MINOR ${version} ) diff --git a/build/MakeRelease.bat b/build/MakeRelease.bat index 181c5044de..d039762daa 100644 --- a/build/MakeRelease.bat +++ b/build/MakeRelease.bat @@ -1,6 +1,6 @@ @echo off -SET VERSION=2.59.5 +SET VERSION=2.59.6 SET FAUSTGENVERSION=1.64 SET MYPATH=%cd% diff --git a/build/Makefile b/build/Makefile index 659ca8e0d8..e6d83c6d0a 100644 --- a/build/Makefile +++ b/build/Makefile @@ -28,7 +28,7 @@ system := $(shell echo $(system) | grep MINGW > /dev/null && echo MINGW || echo # output directories FAUSTDIR ?= faustdir IOSDIR := iosdir -VERSION := 2.59.5 +VERSION := 2.59.6 #=============================================================== # current generator and backends diff --git a/compiler/README.md b/compiler/README.md index db7d598aa9..5d9dcdc9cd 100644 --- a/compiler/README.md +++ b/compiler/README.md @@ -1,4 +1,4 @@ -% man(1) Version 2.59.5 (04-May-2023) | Faust man page +% man(1) Version 2.59.6 (14-May-2023) | Faust man page NAME ==== diff --git a/documentation/compiler/Doxyfile b/documentation/compiler/Doxyfile index f8449cb055..32e19bfaa1 100644 --- a/documentation/compiler/Doxyfile +++ b/documentation/compiler/Doxyfile @@ -31,7 +31,7 @@ PROJECT_NAME = "FAUST compiler" # This could be handy for archiving the generated documentation or # if some version control system is used. -PROJECT_NUMBER = 2.59.5 +PROJECT_NUMBER = 2.59.6 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. diff --git a/documentation/libfaust/Doxyfile b/documentation/libfaust/Doxyfile index 4d0fc9f044..7807f552ec 100644 --- a/documentation/libfaust/Doxyfile +++ b/documentation/libfaust/Doxyfile @@ -5,7 +5,7 @@ #--------------------------------------------------------------------------- DOXYFILE_ENCODING = UTF-8 PROJECT_NAME = libfaust -PROJECT_NUMBER = 2.59.5 +PROJECT_NUMBER = 2.59.6 OUTPUT_DIRECTORY = . CREATE_SUBDIRS = NO OUTPUT_LANGUAGE = English diff --git a/documentation/libfaustremote/Doxyfile b/documentation/libfaustremote/Doxyfile index 186f9ef00f..31e20d1057 100644 --- a/documentation/libfaustremote/Doxyfile +++ b/documentation/libfaustremote/Doxyfile @@ -5,7 +5,7 @@ #--------------------------------------------------------------------------- DOXYFILE_ENCODING = UTF-8 PROJECT_NAME = libfaustremote -PROJECT_NUMBER = 2.59.5 +PROJECT_NUMBER = 2.59.6 OUTPUT_DIRECTORY = . CREATE_SUBDIRS = NO OUTPUT_LANGUAGE = English diff --git a/documentation/man/README.md b/documentation/man/README.md index db7d598aa9..5d9dcdc9cd 100644 --- a/documentation/man/README.md +++ b/documentation/man/README.md @@ -1,4 +1,4 @@ -% man(1) Version 2.59.5 (04-May-2023) | Faust man page +% man(1) Version 2.59.6 (14-May-2023) | Faust man page NAME ==== diff --git a/documentation/man/man-header.txt b/documentation/man/man-header.txt index 493c25d5cb..8dbcaef715 100644 --- a/documentation/man/man-header.txt +++ b/documentation/man/man-header.txt @@ -1,4 +1,4 @@ -% man(1) Version 2.59.5 (04-May-2023) | Faust man page +% man(1) Version 2.59.6 (14-May-2023) | Faust man page NAME ==== diff --git a/documentation/man/man1/faust.1 b/documentation/man/man1/faust.1 index 254a30808d..59aa82e7ff 100644 --- a/documentation/man/man1/faust.1 +++ b/documentation/man/man1/faust.1 @@ -14,7 +14,7 @@ . ftr VB CB . ftr VBI CBI .\} -.TH "man" "1" "" "Version 2.59.5 (04-May-2023)" "Faust man page" +.TH "man" "1" "" "Version 2.59.6 (14-May-2023)" "Faust man page" .hy .SH NAME .PP diff --git a/tools/faust-config b/tools/faust-config index 477e9705f3..838903060d 100755 --- a/tools/faust-config +++ b/tools/faust-config @@ -38,7 +38,7 @@ function get { esac } -SYSTEMLIBS="-lm -lz -lzstd -lcurses -lxml2" +SYSTEMLIBS="-lm -lz -lcurses -lxml2" if [ "$#" -eq 0 ] then diff --git a/windows/faust.rc b/windows/faust.rc index d96e1acfdb..014c04d3fc 100644 --- a/windows/faust.rc +++ b/windows/faust.rc @@ -51,8 +51,8 @@ END // VS_VERSION_INFO VERSIONINFO - FILEVERSION 2,59,5,0 - PRODUCTVERSION 2,59,5,0 + FILEVERSION 2,59,6,0 + PRODUCTVERSION 2,59,6,0 FILEFLAGSMASK 0x17L #ifdef _DEBUG FILEFLAGS 0x1L @@ -68,12 +68,12 @@ BEGIN BLOCK "040c04b0" BEGIN VALUE "FileDescription", "Faust compiler" - VALUE "FileVersion", "2, 59, 5, 0" + VALUE "FileVersion", "2, 59, 6, 0" VALUE "InternalName", "Faust" VALUE "LegalCopyright", "Copyright (C) 2009-2019 - Grame" VALUE "OriginalFilename", "faust.exe" VALUE "ProductName", "Faust" - VALUE "ProductVersion", "2, 59, 5, 0" + VALUE "ProductVersion", "2, 59, 6, 0" END END BLOCK "VarFileInfo" diff --git a/windows/faustdll.rc b/windows/faustdll.rc index d96e1acfdb..014c04d3fc 100644 --- a/windows/faustdll.rc +++ b/windows/faustdll.rc @@ -51,8 +51,8 @@ END // VS_VERSION_INFO VERSIONINFO - FILEVERSION 2,59,5,0 - PRODUCTVERSION 2,59,5,0 + FILEVERSION 2,59,6,0 + PRODUCTVERSION 2,59,6,0 FILEFLAGSMASK 0x17L #ifdef _DEBUG FILEFLAGS 0x1L @@ -68,12 +68,12 @@ BEGIN BLOCK "040c04b0" BEGIN VALUE "FileDescription", "Faust compiler" - VALUE "FileVersion", "2, 59, 5, 0" + VALUE "FileVersion", "2, 59, 6, 0" VALUE "InternalName", "Faust" VALUE "LegalCopyright", "Copyright (C) 2009-2019 - Grame" VALUE "OriginalFilename", "faust.exe" VALUE "ProductName", "Faust" - VALUE "ProductVersion", "2, 59, 5, 0" + VALUE "ProductVersion", "2, 59, 6, 0" END END BLOCK "VarFileInfo"