Skip to content

Commit d0a2741

Browse files
committed
Set version to 2.84.3.
1 parent c77609c commit d0a2741

File tree

16 files changed

+23
-23
lines changed

16 files changed

+23
-23
lines changed

.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.84.2
4+
FAUST_VERSION: 2.84.3
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.84.2
1+
FAUST compiler, Version 2.84.3
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.84.2
1+
version := 2.84.3
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.84.2"
29+
#define FAUSTVERSION "2.84.3"
3030

3131
// Version as separated [major,minor,patch] values
3232
#define FAUSTMAJORVERSION 2
3333
#define FAUSTMINORVERSION 84
34-
#define FAUSTPATCHVERSION 2
34+
#define FAUSTPATCHVERSION 3
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.84.2)
6+
set (VERSION 2.84.3)
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.84.2
4+
SET VERSION=2.84.3
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.84.2
31+
VERSION := 2.84.3
3232

3333
#===============================================================
3434
# 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.84.2 (31-January-2026) | Faust man page
1+
% man(1) Version 2.84.3 (01-February-2026) | Faust man page
22

33
NAME
44
====

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.84.2
34+
PROJECT_NUMBER = 2.84.3
3535

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

documentation/libfaust/Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#---------------------------------------------------------------------------
66
DOXYFILE_ENCODING = UTF-8
77
PROJECT_NAME = libfaust
8-
PROJECT_NUMBER = 2.84.2
8+
PROJECT_NUMBER = 2.84.3
99
OUTPUT_DIRECTORY = .
1010
CREATE_SUBDIRS = NO
1111
OUTPUT_LANGUAGE = English

0 commit comments

Comments
 (0)