Skip to content

Commit 49f2278

Browse files
committed
Set version to 2.59.2.
1 parent 940433e commit 49f2278

File tree

17 files changed

+25
-26
lines changed

17 files changed

+25
-26
lines changed

COPYING.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FAUST compiler, Version 2.59.1
1+
FAUST compiler, Version 2.59.2
22
Copyright (C) 2003-2019 GRAME, Centre National de Creation Musicale
33
---------------------------------------------------------------------
44
This program is free software; you can redistribute it and/or modify

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version := 2.59.1
1+
version := 2.59.2
22

33
system ?= $(shell uname -s)
44

architecture/faust/export.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@
2626
#define __export__
2727

2828
// Version as a global string
29-
#define FAUSTVERSION "2.59.1"
29+
#define FAUSTVERSION "2.59.2"
3030

3131
// Version as separated [major,minor,patch] values
3232
#define FAUSTMAJORVERSION 2
3333
#define FAUSTMINORVERSION 59
34-
#define FAUSTPATCHVERSION 1
34+
#define FAUSTPATCHVERSION 2
3535

3636
// Use FAUST_API for code that is part of the external API but is also compiled in faust and libfaust
3737
// Use LIBFAUST_API for code that is compiled in faust and libfaust

build/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ project (faust)
33

44
#######################################
55
# versions management
6-
set (VERSION 2.59.1)
6+
set (VERSION 2.59.2)
77
macro (get_major_minor_patch version)
88
string( REGEX REPLACE "([0-9]*)\\.([0-9]*)\\.([0-9]*)" "\\1" VERSION_MAJOR ${version} )
99
string( REGEX REPLACE "([0-9]*)\\.([0-9]*)\\.([0-9]*)" "\\2" VERSION_MINOR ${version} )

build/MakeRelease.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ echo off
33
IF [%1]==[] GOTO USAGE
44
IF NOT EXIST %1 GOTO USAGE
55

6-
SET VERSION=2.59.1
6+
SET VERSION=2.59.2
77
SET BUILD=%1
88
SET FAUSTGENVERSION=1.64
99
SET FAUSTLIVE=../../faustlive

build/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ system := $(shell echo $(system) | grep MINGW > /dev/null && echo MINGW || echo
1111
# output directories
1212
FAUSTDIR ?= faustdir
1313
IOSDIR := iosdir
14-
VERSION := 2.59.1
14+
VERSION := 2.59.2
1515

1616
#===============================================================
1717
# current generator and backends

compiler/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
% man(1) Version 2.59.1 (17-April-2023) | Faust man page
1+
% man(1) Version 2.59.2 (18-April-2023) | Faust man page
22

33
NAME
44
====

compiler/generator/wasm/wasm_dsp_aux.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,7 @@ LIBFAUST_API void writeWasmDSPFactoryToMachineFile(wasm_dsp_factory* factory, co
385385
{
386386
}
387387

388-
LIBFAUST_API wasm_dsp::wasm_dsp(wasm_dsp_factory* factory) : fFactory(factory), fDSP(-1)
388+
LIBFAUST_API wasm_dsp::wasm_dsp(wasm_dsp_factory* factory) : fFactory(factory)
389389
{
390390
}
391391

compiler/generator/wasm/wasm_dsp_aux.hh

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -270,10 +270,9 @@ class MidiUI;
270270
class LIBFAUST_API wasm_dsp : public dsp, public JSONControl {
271271
private:
272272
wasm_dsp_factory* fFactory;
273-
int fDSP; // Index of wasm DSP memory
274-
273+
275274
public:
276-
wasm_dsp() : fFactory(nullptr), fDSP(-1) {}
275+
wasm_dsp() : fFactory(nullptr) {}
277276
wasm_dsp(wasm_dsp_factory* factory);
278277
virtual ~wasm_dsp();
279278

documentation/compiler/Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ PROJECT_NAME = "FAUST compiler"
3131
# This could be handy for archiving the generated documentation or
3232
# if some version control system is used.
3333

34-
PROJECT_NUMBER = 2.59.1
34+
PROJECT_NUMBER = 2.59.2
3535

3636
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
3737
# base path where the generated documentation will be put.

0 commit comments

Comments
 (0)