Skip to content

Commit e15da79

Browse files
committed
chore: get ready for the next release
- Update the copyright year. - Fallback version number in form3.h. - Missed Kaneko's name in AUTHORS (the original author of gentopo.cc). Is there anything we have missed?
1 parent 679d8dc commit e15da79

77 files changed

Lines changed: 93 additions & 77 deletions

Some content is hidden

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

AUTHORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ Over the years the following people have made contributions to the code of FORM
22
(in alphabetical order)
33
Denny Fliegner
44
Markus Frank
5+
Toshiaki Kaneko
56
Jan Kuipers
67
Andrei Onyshenko
78
Irina Pushkina

scripts/update-copyright.sh

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
#!/bin/sh
2+
#
3+
# @file update-copyright.sh
4+
#
5+
# Updates the copyright notices, like
6+
#
7+
# Copyright (C) 1984-2022 J.A.M. Vermaseren
8+
#
9+
# in all files in the current directory and its subdirectories.
10+
#
11+
# NOTE: GNU grep/xargs/sed required.
12+
#
13+
set -eu
14+
grep -l -r 'Copyright *(C).*Vermaseren' . \
15+
| xargs sed -i 's/Copyright *(C).*Vermaseren/Copyright (C) 1984-2022 J.A.M. Vermaseren/g'

sources/argument.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
/* #[ License : */
88
/*
9-
* Copyright (C) 1984-2017 J.A.M. Vermaseren
9+
* Copyright (C) 1984-2022 J.A.M. Vermaseren
1010
* When using this file you are requested to refer to the publication
1111
* J.A.M.Vermaseren "New features of FORM" math-ph/0010025
1212
* This is considered a matter of courtesy as the development was paid

sources/bugtool.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
/* #[ License : */
77
/*
8-
* Copyright (C) 1984-2017 J.A.M. Vermaseren
8+
* Copyright (C) 1984-2022 J.A.M. Vermaseren
99
* When using this file you are requested to refer to the publication
1010
* J.A.M.Vermaseren "New features of FORM" math-ph/0010025
1111
* This is considered a matter of courtesy as the development was paid

sources/checkpoint.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
#] Explanations :
5454
#[ License :
5555
*
56-
* Copyright (C) 1984-2017 J.A.M. Vermaseren
56+
* Copyright (C) 1984-2022 J.A.M. Vermaseren
5757
* When using this file you are requested to refer to the publication
5858
* J.A.M.Vermaseren "New features of FORM" math-ph/0010025
5959
* This is considered a matter of courtesy as the development was paid

sources/comexpr.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
/* #[ License : */
99
/*
10-
* Copyright (C) 1984-2017 J.A.M. Vermaseren
10+
* Copyright (C) 1984-2022 J.A.M. Vermaseren
1111
* When using this file you are requested to refer to the publication
1212
* J.A.M.Vermaseren "New features of FORM" math-ph/0010025
1313
* This is considered a matter of courtesy as the development was paid

sources/compcomm.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
*/
1010
/* #[ License : */
1111
/*
12-
* Copyright (C) 1984-2017 J.A.M. Vermaseren
12+
* Copyright (C) 1984-2022 J.A.M. Vermaseren
1313
* When using this file you are requested to refer to the publication
1414
* J.A.M.Vermaseren "New features of FORM" math-ph/0010025
1515
* This is considered a matter of courtesy as the development was paid

sources/compiler.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
*/
1515
/* #[ License : */
1616
/*
17-
* Copyright (C) 1984-2017 J.A.M. Vermaseren
17+
* Copyright (C) 1984-2022 J.A.M. Vermaseren
1818
* When using this file you are requested to refer to the publication
1919
* J.A.M.Vermaseren "New features of FORM" math-ph/0010025
2020
* This is considered a matter of courtesy as the development was paid

sources/compress.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
/* #[ License : */
88
/*
9-
* Copyright (C) 1984-2017 J.A.M. Vermaseren
9+
* Copyright (C) 1984-2022 J.A.M. Vermaseren
1010
* When using this file you are requested to refer to the publication
1111
* J.A.M.Vermaseren "New features of FORM" math-ph/0010025
1212
* This is considered a matter of courtesy as the development was paid

sources/comtool.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*/
55
/* #[ License : */
66
/*
7-
* Copyright (C) 1984-2017 J.A.M. Vermaseren
7+
* Copyright (C) 1984-2022 J.A.M. Vermaseren
88
* When using this file you are requested to refer to the publication
99
* J.A.M.Vermaseren "New features of FORM" math-ph/0010025
1010
* This is considered a matter of courtesy as the development was paid

0 commit comments

Comments
 (0)