diff --git a/CHANGES.rst b/CHANGES.rst index fec8a72..a143e6a 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,8 @@ -Revision 0.2.8, released XX-11-2018 + +Revision 0.2.8, released 29-12-2018 ----------------------------------- +- Copyright notice extended to the year 2019 - Fixed multiline (line continuation) state termination (by an empty line) - Fixed empty continuation line parsing (e.g. just '\') diff --git a/LICENSE.rst b/LICENSE.rst index 63f5764..727e1e2 100644 --- a/LICENSE.rst +++ b/LICENSE.rst @@ -1,6 +1,6 @@ BSD 2-Clause License -Copyright (c) 2018, Ilya Etingof +Copyright (c) 2018-2019, Ilya Etingof All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/README.md b/README.md index 91f3d76..3792b80 100644 --- a/README.md +++ b/README.md @@ -537,4 +537,4 @@ You could `pip install apacheconfig` or download it from [PyPI](https://pypi.org If something does not work as expected, [open an issue](https://github.com/etingof/apacheconfig/issues) at GitHub. -Copyright (c) 2018, [Ilya Etingof](mailto:etingof@gmail.com). All rights reserved. +Copyright (c) 2018-2019, [Ilya Etingof](mailto:etingof@gmail.com). All rights reserved. diff --git a/apacheconfig/apacheconfigtool.py b/apacheconfig/apacheconfigtool.py index dcecb86..9733f35 100644 --- a/apacheconfig/apacheconfigtool.py +++ b/apacheconfig/apacheconfigtool.py @@ -1,7 +1,7 @@ # # This file is part of apacheconfig software. # -# Copyright (c) 2018, Ilya Etingof +# Copyright (c) 2018-2019, Ilya Etingof # License: https://github.com/etingof/apacheconfig/LICENSE.rst # import argparse diff --git a/apacheconfig/error.py b/apacheconfig/error.py index dfd1c27..bc00da5 100644 --- a/apacheconfig/error.py +++ b/apacheconfig/error.py @@ -1,7 +1,7 @@ # # This file is part of apacheconfig software. # -# Copyright (c) 2018, Ilya Etingof +# Copyright (c) 2018-2019, Ilya Etingof # License: https://github.com/etingof/apacheconfig/LICENSE.rst # @@ -11,4 +11,4 @@ class ApacheConfigError(Exception): class ConfigFileReadError(ApacheConfigError): - pass \ No newline at end of file + pass diff --git a/apacheconfig/lexer.py b/apacheconfig/lexer.py index 68a4ba3..e20872b 100644 --- a/apacheconfig/lexer.py +++ b/apacheconfig/lexer.py @@ -1,7 +1,7 @@ # # This file is part of apacheconfig software. # -# Copyright (c) 2018, Ilya Etingof +# Copyright (c) 2018-2019, Ilya Etingof # License: https://github.com/etingof/apacheconfig/LICENSE.rst # import logging diff --git a/apacheconfig/loader.py b/apacheconfig/loader.py index 25f59b6..8c5ba81 100644 --- a/apacheconfig/loader.py +++ b/apacheconfig/loader.py @@ -1,7 +1,7 @@ # # This file is part of apacheconfig software. # -# Copyright (c) 2018, Ilya Etingof +# Copyright (c) 2018-2019, Ilya Etingof # License: https://github.com/etingof/apacheconfig/LICENSE.rst # import glob diff --git a/apacheconfig/parser.py b/apacheconfig/parser.py index 175d989..0a61daa 100644 --- a/apacheconfig/parser.py +++ b/apacheconfig/parser.py @@ -1,7 +1,7 @@ # # This file is part of apacheconfig software. # -# Copyright (c) 2018, Ilya Etingof +# Copyright (c) 2018-2019, Ilya Etingof # License: https://github.com/etingof/apacheconfig/LICENSE.rst # import logging diff --git a/setup.py b/setup.py index b39a899..8650c30 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ # # This file is part of apacheconfig software. # -# Copyright (c) 2018, Ilya Etingof +# Copyright (c) 2018-2019, Ilya Etingof # License: https://github.com/etingof/apacheconfig/LICENSE.rst # import os diff --git a/tests/__main__.py b/tests/__main__.py index e7b3c77..fa79bb5 100644 --- a/tests/__main__.py +++ b/tests/__main__.py @@ -1,7 +1,7 @@ # # This file is part of apacheconfig software. # -# Copyright (c) 2018, Ilya Etingof +# Copyright (c) 2018-2019, Ilya Etingof # License: https://github.com/etingof/apacheconfig/LICENSE.rst # try: diff --git a/tests/integration/__main__.py b/tests/integration/__main__.py index 3dea803..0102407 100644 --- a/tests/integration/__main__.py +++ b/tests/integration/__main__.py @@ -1,7 +1,7 @@ # # This file is part of apacheconfig software. # -# Copyright (c) 2018, Ilya Etingof +# Copyright (c) 2018-2019, Ilya Etingof # License: https://github.com/etingof/apacheconfig/LICENSE.rst # try: diff --git a/tests/integration/test_perl_samples.py b/tests/integration/test_perl_samples.py index 2c46a99..a9d99a4 100644 --- a/tests/integration/test_perl_samples.py +++ b/tests/integration/test_perl_samples.py @@ -1,7 +1,7 @@ # # This file is part of apacheconfig software. # -# Copyright (c) 2018, Ilya Etingof +# Copyright (c) 2018-2019, Ilya Etingof # License: https://github.com/etingof/apacheconfig/LICENSE.rst # import sys diff --git a/tests/unit/__main__.py b/tests/unit/__main__.py index c1ba0e1..7b5b001 100644 --- a/tests/unit/__main__.py +++ b/tests/unit/__main__.py @@ -1,7 +1,7 @@ # # This file is part of apacheconfig software. # -# Copyright (c) 2018, Ilya Etingof +# Copyright (c) 2018-2019, Ilya Etingof # License: https://github.com/etingof/apacheconfig/LICENSE.rst # try: diff --git a/tests/unit/test_lexer.py b/tests/unit/test_lexer.py index 429f066..25171b4 100644 --- a/tests/unit/test_lexer.py +++ b/tests/unit/test_lexer.py @@ -1,7 +1,7 @@ # # This file is part of apacheconfig software. # -# Copyright (c) 2018, Ilya Etingof +# Copyright (c) 2018-2019, Ilya Etingof # License: https://github.com/etingof/apacheconfig/LICENSE.rst # import sys diff --git a/tests/unit/test_loader.py b/tests/unit/test_loader.py index b9eee42..f7028f6 100644 --- a/tests/unit/test_loader.py +++ b/tests/unit/test_loader.py @@ -1,7 +1,7 @@ # # This file is part of apacheconfig software. # -# Copyright (c) 2018, Ilya Etingof +# Copyright (c) 2018-2019, Ilya Etingof # License: https://github.com/etingof/apacheconfig/LICENSE.rst # import os diff --git a/tests/unit/test_parser.py b/tests/unit/test_parser.py index 67fbce3..c164306 100644 --- a/tests/unit/test_parser.py +++ b/tests/unit/test_parser.py @@ -1,7 +1,7 @@ # # This file is part of apacheconfig software. # -# Copyright (c) 2018, Ilya Etingof +# Copyright (c) 2018-2019, Ilya Etingof # License: https://github.com/etingof/apacheconfig/LICENSE.rst # import sys