Skip to content

Commit 080690c

Browse files
authored
Merge pull request #445 from byte-physics/prepare-release
Prepare release
2 parents 78ceff4 + 04a97f8 commit 080690c

File tree

129 files changed

+133
-133
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

129 files changed

+133
-133
lines changed

create-public-release.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22

33
set -e
44

5-
newVersion=1.09
6-
revision=igortest-v$newVersion
5+
newVersion=1.10
6+
revision=v$newVersion
77

88
filesToWatch="procedures docu helper INSTALL.txt"
99

10-
for i in `ls procedures/*.ipf`; do
10+
for i in `find . -iname "*.ipf"`; do
1111
sed -i "s/#pragma version=.*/#pragma version=$newVersion/" $i
1212
sed -i "s/PKG_VERSION =.*$/PKG_VERSION = $newVersion/" $i
1313
done
@@ -19,7 +19,7 @@ if [ ! -z "$(git status -s --untracked-files=no $filesToWatch)" ]; then
1919
exit 0
2020
fi
2121

22-
basename=$revision
22+
basename=igortest-$revision
2323
zipFile=$basename.zip
2424
folder=releases/$basename
2525

docu/doxygen/Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PROJECT_NAME = "Igor Pro Universal Testing Framework"
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = 1.09
41+
PROJECT_NUMBER = 1.10
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# for a project that appears at the top of each page and should give viewer a

docu/examples/CoverageDemoCode.ipf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#pragma TextEncoding = "UTF-8"
2-
#pragma version=1.09
2+
#pragma version=1.10
33
#pragma rtGlobals=3 // Use modern global access method and strict wave access.
44
#pragma rtFunctionErrors=1
55

docu/examples/Example6/example6-automatic-invocation.ipf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#pragma rtGlobals=3
22
#pragma TextEncoding="UTF-8"
3-
#pragma version=1.09
3+
#pragma version=1.10
44
#pragma ModuleName=Example6
55

66
#include "igortest"

docu/examples/Example6/example6-runner.ipf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#pragma rtGlobals=3
22
#pragma TextEncoding="UTF-8"
3-
#pragma version=1.09
3+
#pragma version=1.10
44

55
#include "igortest"
66

docu/examples/TAP_Examples/tap_example1a-uncaught-aborts.ipf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#pragma rtGlobals=3
22
#pragma ModuleName=TAPExample1a
3-
#pragma version=1.09
3+
#pragma version=1.10
44

55
#include "igortest"
66

docu/examples/TAP_Examples/tap_example1b-warn_and_error.ipf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#pragma rtGlobals=3
2-
#pragma version=1.09
2+
#pragma version=1.10
33

44
#include "igortest"
55

docu/examples/example1-plain.ipf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#pragma rtGlobals=3
22
#pragma TextEncoding="UTF-8"
3-
#pragma version=1.09
3+
#pragma version=1.10
44

55
#include "igortest"
66

docu/examples/example10-peakfind.ipf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#pragma TextEncoding = "UTF-8"
2-
#pragma version=1.09
2+
#pragma version=1.10
33
#pragma rtGlobals=3 // Use modern global access method and strict wave access.
44

55
#include "igortest"

docu/examples/example11-background.ipf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#pragma rtGlobals=3
22
#pragma TextEncoding="UTF-8"
3-
#pragma version=1.09
3+
#pragma version=1.10
44
#pragma ModuleName=Example11
55

66
#include "igortest"

0 commit comments

Comments
 (0)