From 6de7ddfee512dc63254cda2fe59043e37c0c884b Mon Sep 17 00:00:00 2001 From: Kodi Arfer Date: Mon, 1 Jan 2018 10:38:33 -0500 Subject: [PATCH] Update copyright years --- LICENSE | 2 +- hy/_compat.py | 2 +- hy/cmdline.py | 2 +- hy/compiler.py | 2 +- hy/completer.py | 2 +- hy/contrib/botsbuildbots.hy | 2 +- hy/contrib/hy_repr.hy | 2 +- hy/contrib/loop.hy | 2 +- hy/contrib/multi.hy | 2 +- hy/contrib/profile.hy | 2 +- hy/contrib/sequences.hy | 2 +- hy/contrib/walk.hy | 2 +- hy/core/bootstrap.hy | 2 +- hy/core/language.hy | 2 +- hy/core/macros.hy | 2 +- hy/core/shadow.hy | 2 +- hy/errors.py | 2 +- hy/extra/anaphoric.hy | 2 +- hy/extra/reserved.hy | 2 +- hy/importer.py | 2 +- hy/lex/__init__.py | 2 +- hy/lex/exceptions.py | 2 +- hy/lex/lexer.py | 2 +- hy/lex/parser.py | 2 +- hy/macros.py | 2 +- hy/models.py | 2 +- scripts/update-coreteam.hy | 2 +- setup.py | 2 +- tests/compilers/test_ast.py | 2 +- tests/compilers/test_compiler.py | 2 +- tests/importer/test_importer.py | 2 +- tests/importer/test_pyc.py | 2 +- tests/macros/test_macro_processor.py | 2 +- tests/macros/test_tag_macros.py | 2 +- tests/native_tests/cons.hy | 2 +- tests/native_tests/contrib/hy_repr.hy | 2 +- tests/native_tests/contrib/loop.hy | 2 +- tests/native_tests/contrib/multi.hy | 2 +- tests/native_tests/contrib/sequences.hy | 2 +- tests/native_tests/contrib/walk.hy | 2 +- tests/native_tests/core.hy | 2 +- tests/native_tests/defclass.hy | 2 +- tests/native_tests/extra/anaphoric.hy | 2 +- tests/native_tests/extra/reserved.hy | 2 +- tests/native_tests/language.hy | 2 +- tests/native_tests/mathematics.hy | 2 +- tests/native_tests/native_macros.hy | 2 +- tests/native_tests/operators.hy | 2 +- tests/native_tests/py35_only_tests.hy | 2 +- tests/native_tests/py36_only_tests.hy | 2 +- tests/native_tests/py3_only_tests.hy | 2 +- tests/native_tests/quote.hy | 2 +- tests/native_tests/tag_macros.hy | 2 +- tests/native_tests/with_decorator.hy | 2 +- tests/native_tests/with_test.hy | 2 +- tests/resources/argparse_ex.hy | 2 +- tests/test_bin.py | 2 +- tests/test_lex.py | 2 +- tests/test_models.py | 2 +- 59 files changed, 59 insertions(+), 59 deletions(-) diff --git a/LICENSE b/LICENSE index e0276f1..dd23317 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright 2017 the authors. +Copyright 2018 the authors. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), diff --git a/hy/_compat.py b/hy/_compat.py index 32c7665..dc5a7d6 100644 --- a/hy/_compat.py +++ b/hy/_compat.py @@ -1,4 +1,4 @@ -# Copyright 2017 the authors. +# Copyright 2018 the authors. # This file is part of Hy, which is free software licensed under the Expat # license. See the LICENSE. diff --git a/hy/cmdline.py b/hy/cmdline.py index 0c1e089..a7126a9 100644 --- a/hy/cmdline.py +++ b/hy/cmdline.py @@ -1,4 +1,4 @@ -# Copyright 2017 the authors. +# Copyright 2018 the authors. # This file is part of Hy, which is free software licensed under the Expat # license. See the LICENSE. diff --git a/hy/compiler.py b/hy/compiler.py index 1a7c216..44dcf85 100755 --- a/hy/compiler.py +++ b/hy/compiler.py @@ -1,5 +1,5 @@ # -*- encoding: utf-8 -*- -# Copyright 2017 the authors. +# Copyright 2018 the authors. # This file is part of Hy, which is free software licensed under the Expat # license. See the LICENSE. diff --git a/hy/completer.py b/hy/completer.py index 2f41e3f..9cfc668 100644 --- a/hy/completer.py +++ b/hy/completer.py @@ -1,4 +1,4 @@ -# Copyright 2017 the authors. +# Copyright 2018 the authors. # This file is part of Hy, which is free software licensed under the Expat # license. See the LICENSE. diff --git a/hy/contrib/botsbuildbots.hy b/hy/contrib/botsbuildbots.hy index b3b4aa9..aeac1a1 100644 --- a/hy/contrib/botsbuildbots.hy +++ b/hy/contrib/botsbuildbots.hy @@ -1,4 +1,4 @@ -;; Copyright 2017 the authors. +;; Copyright 2018 the authors. ;; This file is part of Hy, which is free software licensed under the Expat ;; license. See the LICENSE. diff --git a/hy/contrib/hy_repr.hy b/hy/contrib/hy_repr.hy index c715839..e47adcf 100644 --- a/hy/contrib/hy_repr.hy +++ b/hy/contrib/hy_repr.hy @@ -1,4 +1,4 @@ -;; Copyright 2017 the authors. +;; Copyright 2018 the authors. ;; This file is part of Hy, which is free software licensed under the Expat ;; license. See the LICENSE. diff --git a/hy/contrib/loop.hy b/hy/contrib/loop.hy index 3417256..6e1f29f 100644 --- a/hy/contrib/loop.hy +++ b/hy/contrib/loop.hy @@ -1,5 +1,5 @@ ;;; Hy tail-call optimization -;; Copyright 2017 the authors. +;; Copyright 2018 the authors. ;; This file is part of Hy, which is free software licensed under the Expat ;; license. See the LICENSE. diff --git a/hy/contrib/multi.hy b/hy/contrib/multi.hy index c0cee3f..6d74289 100644 --- a/hy/contrib/multi.hy +++ b/hy/contrib/multi.hy @@ -1,5 +1,5 @@ ;; Hy Arity-overloading -;; Copyright 2017 the authors. +;; Copyright 2018 the authors. ;; This file is part of Hy, which is free software licensed under the Expat ;; license. See the LICENSE. diff --git a/hy/contrib/profile.hy b/hy/contrib/profile.hy index f155968..06fec24 100644 --- a/hy/contrib/profile.hy +++ b/hy/contrib/profile.hy @@ -1,5 +1,5 @@ ;;; Hy profiling macros -;; Copyright 2017 the authors. +;; Copyright 2018 the authors. ;; This file is part of Hy, which is free software licensed under the Expat ;; license. See the LICENSE. diff --git a/hy/contrib/sequences.hy b/hy/contrib/sequences.hy index 7157b67..d8c81ad 100644 --- a/hy/contrib/sequences.hy +++ b/hy/contrib/sequences.hy @@ -1,4 +1,4 @@ -;; Copyright 2017 the authors. +;; Copyright 2018 the authors. ;; This file is part of Hy, which is free software licensed under the Expat ;; license. See the LICENSE. diff --git a/hy/contrib/walk.hy b/hy/contrib/walk.hy index d47da62..d61bb62 100644 --- a/hy/contrib/walk.hy +++ b/hy/contrib/walk.hy @@ -1,5 +1,5 @@ ;;; Hy AST walker -;; Copyright 2017 the authors. +;; Copyright 2018 the authors. ;; This file is part of Hy, which is free software licensed under the Expat ;; license. See the LICENSE. diff --git a/hy/core/bootstrap.hy b/hy/core/bootstrap.hy index bd2585f..675df9c 100644 --- a/hy/core/bootstrap.hy +++ b/hy/core/bootstrap.hy @@ -1,5 +1,5 @@ ;;; Hy bootstrap macros -;; Copyright 2017 the authors. +;; Copyright 2018 the authors. ;; This file is part of Hy, which is free software licensed under the Expat ;; license. See the LICENSE. diff --git a/hy/core/language.hy b/hy/core/language.hy index b202bc2..0a82642 100644 --- a/hy/core/language.hy +++ b/hy/core/language.hy @@ -1,4 +1,4 @@ -;; Copyright 2017 the authors. +;; Copyright 2018 the authors. ;; This file is part of Hy, which is free software licensed under the Expat ;; license. See the LICENSE. diff --git a/hy/core/macros.hy b/hy/core/macros.hy index d3951fc..e478098 100644 --- a/hy/core/macros.hy +++ b/hy/core/macros.hy @@ -1,5 +1,5 @@ ;;; Hy core macros -;; Copyright 2017 the authors. +;; Copyright 2018 the authors. ;; This file is part of Hy, which is free software licensed under the Expat ;; license. See the LICENSE. diff --git a/hy/core/shadow.hy b/hy/core/shadow.hy index bfb1e5f..7471edb 100644 --- a/hy/core/shadow.hy +++ b/hy/core/shadow.hy @@ -1,4 +1,4 @@ -;; Copyright 2017 the authors. +;; Copyright 2018 the authors. ;; This file is part of Hy, which is free software licensed under the Expat ;; license. See the LICENSE. diff --git a/hy/errors.py b/hy/errors.py index edebb5e..a60b09c 100644 --- a/hy/errors.py +++ b/hy/errors.py @@ -1,5 +1,5 @@ # -*- encoding: utf-8 -*- -# Copyright 2017 the authors. +# Copyright 2018 the authors. # This file is part of Hy, which is free software licensed under the Expat # license. See the LICENSE. diff --git a/hy/extra/anaphoric.hy b/hy/extra/anaphoric.hy index 9ad92b7..211af7a 100644 --- a/hy/extra/anaphoric.hy +++ b/hy/extra/anaphoric.hy @@ -1,5 +1,5 @@ ;;; Hy anaphoric macros -;; Copyright 2017 the authors. +;; Copyright 2018 the authors. ;; This file is part of Hy, which is free software licensed under the Expat ;; license. See the LICENSE. diff --git a/hy/extra/reserved.hy b/hy/extra/reserved.hy index 29d53b0..c245224 100644 --- a/hy/extra/reserved.hy +++ b/hy/extra/reserved.hy @@ -1,5 +1,5 @@ ;;; Get a frozenset of Hy reserved words -;; Copyright 2017 the authors. +;; Copyright 2018 the authors. ;; This file is part of Hy, which is free software licensed under the Expat ;; license. See the LICENSE. diff --git a/hy/importer.py b/hy/importer.py index bd1bc1f..58b484a 100644 --- a/hy/importer.py +++ b/hy/importer.py @@ -1,4 +1,4 @@ -# Copyright 2017 the authors. +# Copyright 2018 the authors. # This file is part of Hy, which is free software licensed under the Expat # license. See the LICENSE. diff --git a/hy/lex/__init__.py b/hy/lex/__init__.py index f7f6298..85d6502 100644 --- a/hy/lex/__init__.py +++ b/hy/lex/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2017 the authors. +# Copyright 2018 the authors. # This file is part of Hy, which is free software licensed under the Expat # license. See the LICENSE. diff --git a/hy/lex/exceptions.py b/hy/lex/exceptions.py index 918fe36..14df78b 100644 --- a/hy/lex/exceptions.py +++ b/hy/lex/exceptions.py @@ -1,4 +1,4 @@ -# Copyright 2017 the authors. +# Copyright 2018 the authors. # This file is part of Hy, which is free software licensed under the Expat # license. See the LICENSE. diff --git a/hy/lex/lexer.py b/hy/lex/lexer.py index b3d1f93..a3fecac 100755 --- a/hy/lex/lexer.py +++ b/hy/lex/lexer.py @@ -1,4 +1,4 @@ -# Copyright 2017 the authors. +# Copyright 2018 the authors. # This file is part of Hy, which is free software licensed under the Expat # license. See the LICENSE. diff --git a/hy/lex/parser.py b/hy/lex/parser.py index 05fda85..c5e3c43 100755 --- a/hy/lex/parser.py +++ b/hy/lex/parser.py @@ -1,4 +1,4 @@ -# Copyright 2017 the authors. +# Copyright 2018 the authors. # This file is part of Hy, which is free software licensed under the Expat # license. See the LICENSE. diff --git a/hy/macros.py b/hy/macros.py index 82d88d6..9b1a743 100644 --- a/hy/macros.py +++ b/hy/macros.py @@ -1,4 +1,4 @@ -# Copyright 2017 the authors. +# Copyright 2018 the authors. # This file is part of Hy, which is free software licensed under the Expat # license. See the LICENSE. diff --git a/hy/models.py b/hy/models.py index 3a769e8..91b5494 100644 --- a/hy/models.py +++ b/hy/models.py @@ -1,4 +1,4 @@ -# Copyright 2017 the authors. +# Copyright 2018 the authors. # This file is part of Hy, which is free software licensed under the Expat # license. See the LICENSE. diff --git a/scripts/update-coreteam.hy b/scripts/update-coreteam.hy index 6e2d2ed..cc59630 100644 --- a/scripts/update-coreteam.hy +++ b/scripts/update-coreteam.hy @@ -1,4 +1,4 @@ -;; Copyright 2017 the authors. +;; Copyright 2018 the authors. ;; This file is part of Hy, which is free software licensed under the Expat ;; license. See the LICENSE. diff --git a/setup.py b/setup.py index 72ee75e..c9dcefd 100755 --- a/setup.py +++ b/setup.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright 2017 the authors. +# Copyright 2018 the authors. # This file is part of Hy, which is free software licensed under the Expat # license. See the LICENSE. diff --git a/tests/compilers/test_ast.py b/tests/compilers/test_ast.py index e85f6be..4836ad2 100644 --- a/tests/compilers/test_ast.py +++ b/tests/compilers/test_ast.py @@ -1,5 +1,5 @@ # -*- encoding: utf-8 -*- -# Copyright 2017 the authors. +# Copyright 2018 the authors. # This file is part of Hy, which is free software licensed under the Expat # license. See the LICENSE. diff --git a/tests/compilers/test_compiler.py b/tests/compilers/test_compiler.py index b27d596..aa27912 100644 --- a/tests/compilers/test_compiler.py +++ b/tests/compilers/test_compiler.py @@ -1,4 +1,4 @@ -# Copyright 2017 the authors. +# Copyright 2018 the authors. # This file is part of Hy, which is free software licensed under the Expat # license. See the LICENSE. diff --git a/tests/importer/test_importer.py b/tests/importer/test_importer.py index 9fa5aa5..9e61838 100644 --- a/tests/importer/test_importer.py +++ b/tests/importer/test_importer.py @@ -1,4 +1,4 @@ -# Copyright 2017 the authors. +# Copyright 2018 the authors. # This file is part of Hy, which is free software licensed under the Expat # license. See the LICENSE. diff --git a/tests/importer/test_pyc.py b/tests/importer/test_pyc.py index 850861f..d85b630 100644 --- a/tests/importer/test_pyc.py +++ b/tests/importer/test_pyc.py @@ -1,4 +1,4 @@ -# Copyright 2017 the authors. +# Copyright 2018 the authors. # This file is part of Hy, which is free software licensed under the Expat # license. See the LICENSE. diff --git a/tests/macros/test_macro_processor.py b/tests/macros/test_macro_processor.py index 1acad0b..dc14fec 100644 --- a/tests/macros/test_macro_processor.py +++ b/tests/macros/test_macro_processor.py @@ -1,4 +1,4 @@ -# Copyright 2017 the authors. +# Copyright 2018 the authors. # This file is part of Hy, which is free software licensed under the Expat # license. See the LICENSE. diff --git a/tests/macros/test_tag_macros.py b/tests/macros/test_tag_macros.py index 8a0493a..3cbfc94 100644 --- a/tests/macros/test_tag_macros.py +++ b/tests/macros/test_tag_macros.py @@ -1,4 +1,4 @@ -# Copyright 2017 the authors. +# Copyright 2018 the authors. # This file is part of Hy, which is free software licensed under the Expat # license. See the LICENSE. diff --git a/tests/native_tests/cons.hy b/tests/native_tests/cons.hy index 11da4a9..5afde7d 100644 --- a/tests/native_tests/cons.hy +++ b/tests/native_tests/cons.hy @@ -1,4 +1,4 @@ -;; Copyright 2017 the authors. +;; Copyright 2018 the authors. ;; This file is part of Hy, which is free software licensed under the Expat ;; license. See the LICENSE. diff --git a/tests/native_tests/contrib/hy_repr.hy b/tests/native_tests/contrib/hy_repr.hy index a9c0475..3f40fcc 100644 --- a/tests/native_tests/contrib/hy_repr.hy +++ b/tests/native_tests/contrib/hy_repr.hy @@ -1,4 +1,4 @@ -;; Copyright 2017 the authors. +;; Copyright 2018 the authors. ;; This file is part of Hy, which is free software licensed under the Expat ;; license. See the LICENSE. diff --git a/tests/native_tests/contrib/loop.hy b/tests/native_tests/contrib/loop.hy index 938d65f..1c145b9 100644 --- a/tests/native_tests/contrib/loop.hy +++ b/tests/native_tests/contrib/loop.hy @@ -1,4 +1,4 @@ -;; Copyright 2017 the authors. +;; Copyright 2018 the authors. ;; This file is part of Hy, which is free software licensed under the Expat ;; license. See the LICENSE. diff --git a/tests/native_tests/contrib/multi.hy b/tests/native_tests/contrib/multi.hy index 04fe41e..c185def 100644 --- a/tests/native_tests/contrib/multi.hy +++ b/tests/native_tests/contrib/multi.hy @@ -1,4 +1,4 @@ -;; Copyright 2017 the authors. +;; Copyright 2018 the authors. ;; This file is part of Hy, which is free software licensed under the Expat ;; license. See the LICENSE. diff --git a/tests/native_tests/contrib/sequences.hy b/tests/native_tests/contrib/sequences.hy index a200cc7..423d47d 100644 --- a/tests/native_tests/contrib/sequences.hy +++ b/tests/native_tests/contrib/sequences.hy @@ -1,4 +1,4 @@ -;; Copyright 2017 the authors. +;; Copyright 2018 the authors. ;; This file is part of Hy, which is free software licensed under the Expat ;; license. See the LICENSE. diff --git a/tests/native_tests/contrib/walk.hy b/tests/native_tests/contrib/walk.hy index 689cd2a..61789dc 100644 --- a/tests/native_tests/contrib/walk.hy +++ b/tests/native_tests/contrib/walk.hy @@ -1,4 +1,4 @@ -;; Copyright 2017 the authors. +;; Copyright 2018 the authors. ;; This file is part of Hy, which is free software licensed under the Expat ;; license. See the LICENSE. diff --git a/tests/native_tests/core.hy b/tests/native_tests/core.hy index e5af611..e588be5 100644 --- a/tests/native_tests/core.hy +++ b/tests/native_tests/core.hy @@ -1,4 +1,4 @@ -;; Copyright 2017 the authors. +;; Copyright 2018 the authors. ;; This file is part of Hy, which is free software licensed under the Expat ;; license. See the LICENSE. diff --git a/tests/native_tests/defclass.hy b/tests/native_tests/defclass.hy index a138ff5..da3d9ad 100644 --- a/tests/native_tests/defclass.hy +++ b/tests/native_tests/defclass.hy @@ -1,4 +1,4 @@ -;; Copyright 2017 the authors. +;; Copyright 2018 the authors. ;; This file is part of Hy, which is free software licensed under the Expat ;; license. See the LICENSE. diff --git a/tests/native_tests/extra/anaphoric.hy b/tests/native_tests/extra/anaphoric.hy index 76bf635..7332815 100644 --- a/tests/native_tests/extra/anaphoric.hy +++ b/tests/native_tests/extra/anaphoric.hy @@ -1,4 +1,4 @@ -;; Copyright 2017 the authors. +;; Copyright 2018 the authors. ;; This file is part of Hy, which is free software licensed under the Expat ;; license. See the LICENSE. diff --git a/tests/native_tests/extra/reserved.hy b/tests/native_tests/extra/reserved.hy index cff1db8..402549d 100644 --- a/tests/native_tests/extra/reserved.hy +++ b/tests/native_tests/extra/reserved.hy @@ -1,4 +1,4 @@ -;; Copyright 2017 the authors. +;; Copyright 2018 the authors. ;; This file is part of Hy, which is free software licensed under the Expat ;; license. See the LICENSE. diff --git a/tests/native_tests/language.hy b/tests/native_tests/language.hy index 703e083..8a193ee 100644 --- a/tests/native_tests/language.hy +++ b/tests/native_tests/language.hy @@ -1,4 +1,4 @@ -;; Copyright 2017 the authors. +;; Copyright 2018 the authors. ;; This file is part of Hy, which is free software licensed under the Expat ;; license. See the LICENSE. diff --git a/tests/native_tests/mathematics.hy b/tests/native_tests/mathematics.hy index 83f39ab..5c06092 100644 --- a/tests/native_tests/mathematics.hy +++ b/tests/native_tests/mathematics.hy @@ -1,4 +1,4 @@ -;; Copyright 2017 the authors. +;; Copyright 2018 the authors. ;; This file is part of Hy, which is free software licensed under the Expat ;; license. See the LICENSE. diff --git a/tests/native_tests/native_macros.hy b/tests/native_tests/native_macros.hy index 387cde6..f87f14e 100644 --- a/tests/native_tests/native_macros.hy +++ b/tests/native_tests/native_macros.hy @@ -1,4 +1,4 @@ -;; Copyright 2017 the authors. +;; Copyright 2018 the authors. ;; This file is part of Hy, which is free software licensed under the Expat ;; license. See the LICENSE. diff --git a/tests/native_tests/operators.hy b/tests/native_tests/operators.hy index ac1fc90..68e3769 100644 --- a/tests/native_tests/operators.hy +++ b/tests/native_tests/operators.hy @@ -1,4 +1,4 @@ -;; Copyright 2017 the authors. +;; Copyright 2018 the authors. ;; This file is part of Hy, which is free software licensed under the Expat ;; license. See the LICENSE. diff --git a/tests/native_tests/py35_only_tests.hy b/tests/native_tests/py35_only_tests.hy index 1301b72..680dcf8 100644 --- a/tests/native_tests/py35_only_tests.hy +++ b/tests/native_tests/py35_only_tests.hy @@ -1,4 +1,4 @@ -;; Copyright 2017 the authors. +;; Copyright 2018 the authors. ;; This file is part of Hy, which is free software licensed under the Expat ;; license. See the LICENSE. diff --git a/tests/native_tests/py36_only_tests.hy b/tests/native_tests/py36_only_tests.hy index cee5634..c6e4637 100644 --- a/tests/native_tests/py36_only_tests.hy +++ b/tests/native_tests/py36_only_tests.hy @@ -1,4 +1,4 @@ -;; Copyright 2017 the authors. +;; Copyright 2018 the authors. ;; This file is part of Hy, which is free software licensed under the Expat ;; license. See the LICENSE. diff --git a/tests/native_tests/py3_only_tests.hy b/tests/native_tests/py3_only_tests.hy index eb10ec2..d5d67e0 100644 --- a/tests/native_tests/py3_only_tests.hy +++ b/tests/native_tests/py3_only_tests.hy @@ -1,4 +1,4 @@ -;; Copyright 2017 the authors. +;; Copyright 2018 the authors. ;; This file is part of Hy, which is free software licensed under the Expat ;; license. See the LICENSE. diff --git a/tests/native_tests/quote.hy b/tests/native_tests/quote.hy index e1c9f3b..09aafc5 100644 --- a/tests/native_tests/quote.hy +++ b/tests/native_tests/quote.hy @@ -1,4 +1,4 @@ -;; Copyright 2017 the authors. +;; Copyright 2018 the authors. ;; This file is part of Hy, which is free software licensed under the Expat ;; license. See the LICENSE. diff --git a/tests/native_tests/tag_macros.hy b/tests/native_tests/tag_macros.hy index 3ba7182..5aba99d 100644 --- a/tests/native_tests/tag_macros.hy +++ b/tests/native_tests/tag_macros.hy @@ -1,4 +1,4 @@ -;; Copyright 2017 the authors. +;; Copyright 2018 the authors. ;; This file is part of Hy, which is free software licensed under the Expat ;; license. See the LICENSE. diff --git a/tests/native_tests/with_decorator.hy b/tests/native_tests/with_decorator.hy index 838241c..1202eb8 100644 --- a/tests/native_tests/with_decorator.hy +++ b/tests/native_tests/with_decorator.hy @@ -1,4 +1,4 @@ -;; Copyright 2017 the authors. +;; Copyright 2018 the authors. ;; This file is part of Hy, which is free software licensed under the Expat ;; license. See the LICENSE. diff --git a/tests/native_tests/with_test.hy b/tests/native_tests/with_test.hy index 984d436..6f2fc16 100644 --- a/tests/native_tests/with_test.hy +++ b/tests/native_tests/with_test.hy @@ -1,4 +1,4 @@ -;; Copyright 2017 the authors. +;; Copyright 2018 the authors. ;; This file is part of Hy, which is free software licensed under the Expat ;; license. See the LICENSE. diff --git a/tests/resources/argparse_ex.hy b/tests/resources/argparse_ex.hy index d193bec..e6a5324 100755 --- a/tests/resources/argparse_ex.hy +++ b/tests/resources/argparse_ex.hy @@ -1,5 +1,5 @@ #!/usr/bin/env hy -;; Copyright 2017 the authors. +;; Copyright 2018 the authors. ;; This file is part of Hy, which is free software licensed under the Expat ;; license. See the LICENSE. diff --git a/tests/test_bin.py b/tests/test_bin.py index 3b28e0d..e53626e 100644 --- a/tests/test_bin.py +++ b/tests/test_bin.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2017 the authors. +# Copyright 2018 the authors. # This file is part of Hy, which is free software licensed under the Expat # license. See the LICENSE. diff --git a/tests/test_lex.py b/tests/test_lex.py index bdb412a..17c9e4c 100644 --- a/tests/test_lex.py +++ b/tests/test_lex.py @@ -1,4 +1,4 @@ -# Copyright 2017 the authors. +# Copyright 2018 the authors. # This file is part of Hy, which is free software licensed under the Expat # license. See the LICENSE. diff --git a/tests/test_models.py b/tests/test_models.py index 89c5e16..9d924e9 100644 --- a/tests/test_models.py +++ b/tests/test_models.py @@ -1,4 +1,4 @@ -# Copyright 2017 the authors. +# Copyright 2018 the authors. # This file is part of Hy, which is free software licensed under the Expat # license. See the LICENSE.