Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit722a8a6

Browse files
committed
chore: get ready for v4.3.1
1 parentf1ae07e commit722a8a6

Some content is hidden

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

77 files changed

+92
-79
lines changed

‎README.md‎

Lines changed: 1 addition & 1 deletion

‎scripts/update-copyright.sh‎

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,21 @@
88
#
99
# in all files in the current directory and its subdirectories.
1010
#
11-
# NOTE: GNU grep/xargs/sed required.
11+
# NOTE: GNU grep/sed required.
12+
#
13+
# Usage:
14+
# update-copyright.sh
1215
#
1316
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'
17+
18+
year=$(date +%Y)
19+
20+
grep -l -r'Copyright *(C).*Vermaseren'.|while IFS=read -r f;do
21+
case$fin
22+
*update-copyright.sh)
23+
;;
24+
*)
25+
sed -i"s/Copyright *(C).*Vermaseren/Copyright (C) 1984-$year J.A.M. Vermaseren/g""$f"
26+
;;
27+
esac
28+
done

‎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-2022 J.A.M. Vermaseren
9+
* Copyright (C) 1984-2023 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-2022 J.A.M. Vermaseren
8+
* Copyright (C) 1984-2023 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-2022 J.A.M. Vermaseren
56+
* Copyright (C) 1984-2023 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-2022 J.A.M. Vermaseren
10+
* Copyright (C) 1984-2023 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-2022 J.A.M. Vermaseren
12+
* Copyright (C) 1984-2023 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-2022 J.A.M. Vermaseren
17+
* Copyright (C) 1984-2023 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-2022 J.A.M. Vermaseren
9+
* Copyright (C) 1984-2023 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-2022 J.A.M. Vermaseren
7+
* Copyright (C) 1984-2023 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)

[8]ページ先頭

©2009-2025 Movatter.jp