Skip to content

Commit 6fc9bc0

Browse files
committed
Set version to 2.85.2.
1 parent ffabee6 commit 6fc9bc0

17 files changed

Lines changed: 28 additions & 27 deletions

File tree

.github/workflows/libfaust.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: libfaust
22

33
env:
4-
FAUST_VERSION: 2.85.1
4+
FAUST_VERSION: 2.85.2
55
FAUSTGEN_VERSION: "1.80"
66
LLVM_PACKAGE_VERSION: "18.1.8"
77
CMAKE_OSX_DEPLOYMENT_TARGET: "10.15"

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.85.1
1+
FAUST compiler, Version 2.85.2
22
Copyright (C) 2003-2024 GRAME, Centre National de Creation Musicale
33
Copyright (C) 2023-2024 INRIA
44
---------------------------------------------------------------------

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version := 2.85.1
1+
version := 2.85.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.85.1"
29+
#define FAUSTVERSION "2.85.2"
3030

3131
// Version as separated [major,minor,patch] values
3232
#define FAUSTMAJORVERSION 2
3333
#define FAUSTMINORVERSION 85
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.85.1)
6+
set (VERSION 2.85.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
@@ -1,7 +1,7 @@
11
@echo off
22

33

4-
SET VERSION=2.85.1
4+
SET VERSION=2.85.2
55
SET FAUSTGENVERSION=1.80
66

77
SET MYPATH=%cd%

build/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ system := $(shell echo $(system) | grep MINGW > /dev/null && echo MINGW || echo
2828
# output directories
2929
FAUSTDIR ?= faustdir
3030
IOSDIR := iosdir
31-
VERSION := 2.85.1
31+
VERSION := 2.85.2
3232

3333
#===============================================================
3434
# current generator and backends

compiler/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
% man(1) Version 2.85.1 (08-March-2026) | Faust man page
1+
% man(1) Version 2.85.2 (13-March-2026) | Faust man page
22

33
NAME
44
====
@@ -168,7 +168,7 @@ Code generation options:
168168

169169
**-ni** \<n> **--narrowing-iterations** \<n> number of iterations before stopping narrowing in signal bounding.
170170

171-
**-rnt** **--rust-no-faustdsp-trait** (Rust only) Don't generate FaustDsp trait implmentation.
171+
**-rnt** **--rust-no-faustdsp-trait** (Rust only) Don't generate FaustDsp trait implementation.
172172

173173
**-rnlm** **--rust-no-libm** (Rust only) Don't generate FFI calls to libm.
174174

compiler/global.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2198,7 +2198,8 @@ string global::printHelp()
21982198
#ifndef EMCC
21992199
sstr << tab << "-lang <lang> --language select output language," << endl;
22002200
sstr << tab
2201-
<< " 'lang' should be asc, c, cpp (default), cmajor, "
2201+
<< " 'lang' should be asc, c, cpp (default), "
2202+
"cmajor, "
22022203
"codebox, csharp, "
22032204
"dlang, fir, interp, java, jax, jsfx, julia, llvm, "
22042205
"ocpp, rust, sdf3, vhdl or wast/wasm."

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.85.1
34+
PROJECT_NUMBER = 2.85.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)