From dc31b10bad79f5123ae430ab09026537ef832cc6 Mon Sep 17 00:00:00 2001 From: John McNamara Date: Sat, 3 Feb 2018 17:15:35 +0000 Subject: [PATCH] Updated copyright year. --- License.txt | 2 +- Makefile | 2 +- dev/release/fix_example_docs.pl | 2 +- dev/release/fix_example_links.pl | 2 +- dev/release/gen_error_strings.pl | 2 +- dev/release/gen_umbrella_file.pl | 2 +- dev/release/gen_windows_def_file.pl | 2 +- docs/Makefile | 2 +- docs/footer.html | 4 ++-- include/xlsxwriter.h | 2 +- include/xlsxwriter/app.h | 2 +- include/xlsxwriter/chart.h | 2 +- include/xlsxwriter/common.h | 4 ++-- include/xlsxwriter/content_types.h | 2 +- include/xlsxwriter/core.h | 2 +- include/xlsxwriter/custom.h | 2 +- include/xlsxwriter/drawing.h | 2 +- include/xlsxwriter/format.h | 2 +- include/xlsxwriter/hash_table.h | 2 +- include/xlsxwriter/packager.h | 2 +- include/xlsxwriter/relationships.h | 2 +- include/xlsxwriter/shared_strings.h | 2 +- include/xlsxwriter/styles.h | 2 +- include/xlsxwriter/theme.h | 2 +- include/xlsxwriter/utility.h | 4 ++-- include/xlsxwriter/workbook.h | 2 +- include/xlsxwriter/worksheet.h | 2 +- include/xlsxwriter/xmlwriter.h | 2 +- src/Makefile | 2 +- src/app.c | 2 +- src/chart.c | 2 +- src/content_types.c | 2 +- src/core.c | 2 +- src/custom.c | 2 +- src/drawing.c | 2 +- src/format.c | 2 +- src/hash_table.c | 2 +- src/packager.c | 2 +- src/relationships.c | 2 +- src/shared_strings.c | 2 +- src/styles.c | 2 +- src/theme.c | 2 +- src/utility.c | 2 +- src/workbook.c | 2 +- src/worksheet.c | 2 +- src/xmlwriter.c | 2 +- test/functional/base_test_class.py | 2 +- test/functional/helper_functions.py | 2 +- test/functional/src/Makefile | 2 +- test/unit/Makefile | 2 +- test/unit/Makefile.unit | 2 +- test/unit/app/Makefile | 2 +- test/unit/app/main.c | 2 +- test/unit/chart/Makefile | 2 +- test/unit/chart/main.c | 2 +- test/unit/content_types/Makefile | 2 +- test/unit/content_types/main.c | 2 +- test/unit/core/Makefile | 2 +- test/unit/core/main.c | 2 +- test/unit/custom/Makefile | 2 +- test/unit/custom/main.c | 2 +- test/unit/drawing/Makefile | 2 +- test/unit/drawing/main.c | 2 +- test/unit/relationships/Makefile | 2 +- test/unit/relationships/main.c | 2 +- test/unit/sst/Makefile | 2 +- test/unit/sst/main.c | 2 +- test/unit/styles/Makefile | 2 +- test/unit/styles/main.c | 2 +- test/unit/utility/Makefile | 2 +- test/unit/utility/main.c | 2 +- test/unit/workbook/Makefile | 2 +- test/unit/workbook/main.c | 2 +- test/unit/worksheet/Makefile | 2 +- test/unit/worksheet/main.c | 2 +- test/unit/xmlwriter/Makefile | 2 +- test/unit/xmlwriter/main.c | 2 +- 77 files changed, 80 insertions(+), 80 deletions(-) diff --git a/License.txt b/License.txt index 78512d18..63670e4a 100644 --- a/License.txt +++ b/License.txt @@ -4,7 +4,7 @@ Libxlsxwriter is released under a FreeBSD license: - Copyright 2014-2017, John McNamara + Copyright 2014-2018, John McNamara All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/Makefile b/Makefile index 426e3355..39ec6b96 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ # # Makefile for libxlsxwriter library. # -# Copyright 2014-2017, John McNamara, jmcnamara@cpan.org +# Copyright 2014-2018, John McNamara, jmcnamara@cpan.org # # Keep the output quiet by default. diff --git a/dev/release/fix_example_docs.pl b/dev/release/fix_example_docs.pl index 6a3c3494..a0d7b16d 100644 --- a/dev/release/fix_example_docs.pl +++ b/dev/release/fix_example_docs.pl @@ -4,7 +4,7 @@ # Simple program to arrange the example programs in a user defined order # instead or sorted order. Also add a caption. # -# Copyright 2014-2017, John McNamara, jmcnamara@cpan.org +# Copyright 2014-2018, John McNamara, jmcnamara@cpan.org # use warnings; use strict; diff --git a/dev/release/fix_example_links.pl b/dev/release/fix_example_links.pl index 8cd65fa5..b04a0c9b 100644 --- a/dev/release/fix_example_links.pl +++ b/dev/release/fix_example_links.pl @@ -4,7 +4,7 @@ # Simple program to generate the examples.dox file from a simple text file, # with links to the next/previous examples. # -# Copyright 2014-2017, John McNamara, jmcnamara@cpan.org +# Copyright 2014-2018, John McNamara, jmcnamara@cpan.org # use strict; use warnings; diff --git a/dev/release/gen_error_strings.pl b/dev/release/gen_error_strings.pl index ac9dbf57..2a962753 100644 --- a/dev/release/gen_error_strings.pl +++ b/dev/release/gen_error_strings.pl @@ -6,7 +6,7 @@ # # perl dev/release/gen_error_strings.pl include/xlsxwriter/common.h # -# Copyright 2014-2017, John McNamara, jmcnamara@cpan.org +# Copyright 2014-2018, John McNamara, jmcnamara@cpan.org # use warnings; use strict; diff --git a/dev/release/gen_umbrella_file.pl b/dev/release/gen_umbrella_file.pl index f32481b7..1de0143e 100644 --- a/dev/release/gen_umbrella_file.pl +++ b/dev/release/gen_umbrella_file.pl @@ -4,7 +4,7 @@ # Simple program to generate the coccoapods unbrella file. # Run from the libxlsxwriter root dir. # -# Copyright 2014-2017, John McNamara, jmcnamara@cpan.org +# Copyright 2014-2018, John McNamara, jmcnamara@cpan.org # use warnings; use strict; diff --git a/dev/release/gen_windows_def_file.pl b/dev/release/gen_windows_def_file.pl index c13be733..8b2ff979 100644 --- a/dev/release/gen_windows_def_file.pl +++ b/dev/release/gen_windows_def_file.pl @@ -6,7 +6,7 @@ # # perl dev/release/gen_windows_def_file.pl lib/libxlsxwriter.a # -# Copyright 2014-2017, John McNamara, jmcnamara@cpan.org +# Copyright 2014-2018, John McNamara, jmcnamara@cpan.org # use warnings; use strict; diff --git a/docs/Makefile b/docs/Makefile index 1c2e33f5..384d410a 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -2,7 +2,7 @@ # # Makefile for libxlsxwriter library. # -# Copyright 2014-2017, John McNamara, jmcnamara@cpan.org +# Copyright 2014-2018, John McNamara, jmcnamara@cpan.org # # Keep the output quiet by default. diff --git a/docs/footer.html b/docs/footer.html index 3358f448..a3b2dbed 100644 --- a/docs/footer.html +++ b/docs/footer.html @@ -4,7 +4,7 @@