Skip to content

Commit

Permalink
Set version to 2.27.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
sletz committed Aug 3, 2020
1 parent d1620c5 commit 5c45bff
Show file tree
Hide file tree
Showing 12 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion COPYING.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FAUST compiler, Version 2.27.1
FAUST compiler, Version 2.27.2
Copyright (C) 2003-2019 GRAME, Centre National de Creation Musicale
---------------------------------------------------------------------
This program is free software; you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version := 2.27.1
version := 2.27.2

system ?= $(shell uname -s)

Expand Down
2 changes: 1 addition & 1 deletion build/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ project (faust)

#######################################
# versions management
set (VERSION 2.27.1)
set (VERSION 2.27.2)
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} )
Expand Down
2 changes: 1 addition & 1 deletion build/MakeRelease.bat
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ echo off
IF [%1]==[] GOTO USAGE
IF NOT EXIST %1 GOTO USAGE

SET VERSION=2.27.1
SET (VERSION=2.27.2)
SET BUILD=%1
SET FAUSTGENVERSION=1.45
SET FAUSTLIVE=../../faustlive
Expand Down
2 changes: 1 addition & 1 deletion build/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ system := $(shell echo $(system) | grep MINGW > /dev/null && echo MINGW || echo
# output directories
FAUSTDIR ?= faustdir
IOSDIR := iosdir
VERSION := 2.27.1
VERSION := 2.27.2

#===============================================================
# current generator and backends
Expand Down
2 changes: 1 addition & 1 deletion compiler/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
% man(1) Version 2.27.1 (15-July-2020) | Faust man page
% man(1) Version 2.27.2 (03-August-2020) | Faust man page

NAME
====
Expand Down
2 changes: 1 addition & 1 deletion compiler/generator/export.hh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
#ifndef __export__
#define __export__

#define FAUSTVERSION "2.27.1"
#define FAUSTVERSION "2.27.2"

#ifdef _WIN32
#define EXPORT __declspec(dllexport)
Expand Down
2 changes: 1 addition & 1 deletion documentation/man/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
% man(1) Version 2.27.1 (15-July-2020) | Faust man page
% man(1) Version 2.27.2 (03-August-2020) | Faust man page

NAME
====
Expand Down
2 changes: 1 addition & 1 deletion documentation/man/man-header.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
% man(1) Version 2.27.1 (15-July-2020) | Faust man page
% man(1) Version 2.27.2 (03-August-2020) | Faust man page

NAME
====
Expand Down
2 changes: 1 addition & 1 deletion documentation/man/man1/faust.1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.\" Automatically generated by Pandoc 2.9.2.1
.\"
.TH "man" "1" "" "Version 2.27.1 (15-July-2020)" "Faust man page"
.TH "man" "1" "" "Version 2.27.2 (03-August-2020)" "Faust man page"
.hy
.SH NAME
.PP
Expand Down
8 changes: 4 additions & 4 deletions windows/faust.rc
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ END
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 2,27,1,0
PRODUCTVERSION 2,27,1,0
FILEVERSION 2,27,2,0
PRODUCTVERSION 2,27,2,0
FILEFLAGSMASK 0x17L
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -68,12 +68,12 @@ BEGIN
BLOCK "040c04b0"
BEGIN
VALUE "FileDescription", "Faust compiler"
VALUE "FileVersion", "2, 27, 1, 0"
VALUE "FileVersion", "2, 27, 2, 0"
VALUE "InternalName", "Faust"
VALUE "LegalCopyright", "Copyright (C) 2009-2019 - Grame"
VALUE "OriginalFilename", "faust.exe"
VALUE "ProductName", "Faust"
VALUE "ProductVersion", "2, 27, 1, 0"
VALUE "ProductVersion", "2, 27, 2, 0"
END
END
BLOCK "VarFileInfo"
Expand Down
8 changes: 4 additions & 4 deletions windows/faustdll.rc
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ END
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 2,27,1,0
PRODUCTVERSION 2,27,1,0
FILEVERSION 2,27,2,0
PRODUCTVERSION 2,27,2,0
FILEFLAGSMASK 0x17L
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -68,12 +68,12 @@ BEGIN
BLOCK "040c04b0"
BEGIN
VALUE "FileDescription", "Faust compiler"
VALUE "FileVersion", "2, 27, 1, 0"
VALUE "FileVersion", "2, 27, 2, 0"
VALUE "InternalName", "Faust"
VALUE "LegalCopyright", "Copyright (C) 2009-2019 - Grame"
VALUE "OriginalFilename", "faust.exe"
VALUE "ProductName", "Faust"
VALUE "ProductVersion", "2, 27, 1, 0"
VALUE "ProductVersion", "2, 27, 2, 0"
END
END
BLOCK "VarFileInfo"
Expand Down

0 comments on commit 5c45bff

Please sign in to comment.