Skip to content

Commit b9a0f8b

Browse files
committed
Update some copyright notices
1 parent ad2dc12 commit b9a0f8b

5 files changed

Lines changed: 10 additions & 10 deletions

File tree

COPYING

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
Spin to C++ / PASM translator
22

3-
Copyright 2011-2025 Total Spectrum Software Inc.
4-
Copyright 2021-2025 Ada Gottensträter
5-
Copyright 2024-2025 Collabora Ltd.
3+
Copyright 2011-2026 Total Spectrum Software Inc.
4+
Copyright 2021-2026 Ada Gottensträter
5+
Copyright 2024-2026 Collabora Ltd.
66

77
+--------------------------------------------------------------------
88
¦ TERMS OF USE: MIT License

COPYING.LIB

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ has agreed to have distributed under the same terms. Nicolas Benezan's
99
SpiFlash object is used for low level flash accesses, and is also MIT
1010
licensed, as are Roger Loh's PSRAM and HyperRam/HyperFlash drivers.
1111

12-
Copyright (c) 2011-2025 Total Spectrum Software Inc.
12+
Copyright (c) 2011-2026 Total Spectrum Software Inc.
1313
Copyright (c) 2006-2023 Parallax, Inc.
1414
Copyright (c) 2020 Jeff Roark
1515
Copyright (c) 2020 Nicolas Benezan

flexcc.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* Spin to C/C++ translator
33
* flexcc front end
4-
* Copyright 2011-2025 Total Spectrum Software Inc.
4+
* Copyright 2011-2026 Total Spectrum Software Inc.
55
*
66
* +--------------------------------------------------------------------
77
* ¦ TERMS OF USE: MIT License
@@ -43,7 +43,7 @@
4343
static void
4444
PrintInfo(FILE *f)
4545
{
46-
fprintf(f, "FlexC compiler (c) 2011-2025 Total Spectrum Software Inc. and contributors\n");
46+
fprintf(f, "FlexC compiler (c) 2011-2026 Total Spectrum Software Inc. and contributors\n");
4747
fprintf(f, "Version %s Compiled on: " __DATE__ "\n", VERSIONSTR);
4848
fflush(f);
4949
}

flexspin.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Spin to C/C++ translator
3-
* Copyright 2011-2025 Total Spectrum Software Inc.
3+
* Copyright 2011-2026 Total Spectrum Software Inc. and contributors
44
*
55
* +--------------------------------------------------------------------
66
* ¦ TERMS OF USE: MIT License
@@ -47,11 +47,11 @@ static void
4747
PrintInfo(FILE *f, int bstcMode)
4848
{
4949
if (bstcMode) {
50-
fprintf(f, "FlexSpin Compiler v%s - Copyright 2011-2025 Total Spectrum Software Inc. and contributors\n", VERSIONSTR);
50+
fprintf(f, "FlexSpin Compiler v%s - Copyright 2011-2026 Total Spectrum Software Inc. and contributors\n", VERSIONSTR);
5151
fprintf(f, "Compiled on: " __DATE__ "\n");
5252

5353
} else {
54-
fprintf(f, "Propeller Spin/PASM Compiler 'FlexSpin' (c) 2011-2025 Total Spectrum Software Inc. and contributors\n");
54+
fprintf(f, "Propeller Spin/PASM Compiler 'FlexSpin' (c) 2011-2026 Total Spectrum Software Inc. and contributors\n");
5555
fprintf(f, "Version %s Compiled on: " __DATE__ "\n", VERSIONSTR);
5656
}
5757
fflush(f);

spin2cpp.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Spin to C/C++ translator
3-
* Copyright 2011-2023 Total Spectrum Software Inc.
3+
* Copyright 2011-2026 Total Spectrum Software Inc. and contributors
44
*
55
* +--------------------------------------------------------------------
66
* ¦ TERMS OF USE: MIT License

0 commit comments

Comments
 (0)