Skip to content

Commit 681a303

Browse files
committed
[NEW] Experimental -diff option for 'Automatic Differentiation in the Faust Compiler', result of Thomas Rushton Google Summer of Code project. Set version to 2.67.0.
1 parent c0c256a commit 681a303

File tree

16 files changed

+24
-24
lines changed

16 files changed

+24
-24
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.66.11
4+
FAUST_VERSION: 2.67.0
55
FAUSTGEN_VERSION: 1.65
66
LLVM_PACKAGE_VERSION: 15.0.7
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.66.11
1+
FAUST compiler, Version 2.67.0
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.66.11
1+
version := 2.67.0
22

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

architecture/faust/export.h

Lines changed: 3 additions & 3 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.66.11"
29+
#define FAUSTVERSION "2.67.0"
3030

3131
// Version as separated [major,minor,patch] values
3232
#define FAUSTMAJORVERSION 2
33-
#define FAUSTMINORVERSION 66
34-
#define FAUSTPATCHVERSION 11
33+
#define FAUSTMINORVERSION 67
34+
#define FAUSTPATCHVERSION 0
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.66.11)
6+
set (VERSION 2.67.0)
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,6 +1,6 @@
11
@echo off
22

3-
SET VERSION=2.66.11
3+
SET VERSION=2.67.0
44
SET FAUSTGENVERSION=1.65
55

66
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.66.11
31+
VERSION := 2.67.0
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.66.11 (26-August-2023) | Faust man page
1+
% man(1) Version 2.67.0 (28-August-2023) | 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.66.11
34+
PROJECT_NUMBER = 2.67.0
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.66.11
8+
PROJECT_NUMBER = 2.67.0
99
OUTPUT_DIRECTORY = .
1010
CREATE_SUBDIRS = NO
1111
OUTPUT_LANGUAGE = English

0 commit comments

Comments
 (0)