Skip to content

Commit

Permalink
Release 0.2.8
Browse files Browse the repository at this point in the history
Copyright notice extended to the year 2019
  • Loading branch information
etingof committed Dec 29, 2018
1 parent f1b0804 commit 7126dbc
Show file tree
Hide file tree
Showing 16 changed files with 19 additions and 17 deletions.
4 changes: 3 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
@@ -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 '\')
Expand Down
2 changes: 1 addition & 1 deletion LICENSE.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
BSD 2-Clause License

Copyright (c) 2018, Ilya Etingof <[email protected]>
Copyright (c) 2018-2019, Ilya Etingof <[email protected]>
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
2 changes: 1 addition & 1 deletion apacheconfig/apacheconfigtool.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# This file is part of apacheconfig software.
#
# Copyright (c) 2018, Ilya Etingof <[email protected]>
# Copyright (c) 2018-2019, Ilya Etingof <[email protected]>
# License: https://github.com/etingof/apacheconfig/LICENSE.rst
#
import argparse
Expand Down
4 changes: 2 additions & 2 deletions apacheconfig/error.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# This file is part of apacheconfig software.
#
# Copyright (c) 2018, Ilya Etingof <[email protected]>
# Copyright (c) 2018-2019, Ilya Etingof <[email protected]>
# License: https://github.com/etingof/apacheconfig/LICENSE.rst
#

Expand All @@ -11,4 +11,4 @@ class ApacheConfigError(Exception):


class ConfigFileReadError(ApacheConfigError):
pass
pass
2 changes: 1 addition & 1 deletion apacheconfig/lexer.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# This file is part of apacheconfig software.
#
# Copyright (c) 2018, Ilya Etingof <[email protected]>
# Copyright (c) 2018-2019, Ilya Etingof <[email protected]>
# License: https://github.com/etingof/apacheconfig/LICENSE.rst
#
import logging
Expand Down
2 changes: 1 addition & 1 deletion apacheconfig/loader.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# This file is part of apacheconfig software.
#
# Copyright (c) 2018, Ilya Etingof <[email protected]>
# Copyright (c) 2018-2019, Ilya Etingof <[email protected]>
# License: https://github.com/etingof/apacheconfig/LICENSE.rst
#
import glob
Expand Down
2 changes: 1 addition & 1 deletion apacheconfig/parser.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# This file is part of apacheconfig software.
#
# Copyright (c) 2018, Ilya Etingof <[email protected]>
# Copyright (c) 2018-2019, Ilya Etingof <[email protected]>
# License: https://github.com/etingof/apacheconfig/LICENSE.rst
#
import logging
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# This file is part of apacheconfig software.
#
# Copyright (c) 2018, Ilya Etingof <[email protected]>
# Copyright (c) 2018-2019, Ilya Etingof <[email protected]>
# License: https://github.com/etingof/apacheconfig/LICENSE.rst
#
import os
Expand Down
2 changes: 1 addition & 1 deletion tests/__main__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# This file is part of apacheconfig software.
#
# Copyright (c) 2018, Ilya Etingof <[email protected]>
# Copyright (c) 2018-2019, Ilya Etingof <[email protected]>
# License: https://github.com/etingof/apacheconfig/LICENSE.rst
#
try:
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/__main__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# This file is part of apacheconfig software.
#
# Copyright (c) 2018, Ilya Etingof <[email protected]>
# Copyright (c) 2018-2019, Ilya Etingof <[email protected]>
# License: https://github.com/etingof/apacheconfig/LICENSE.rst
#
try:
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/test_perl_samples.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# This file is part of apacheconfig software.
#
# Copyright (c) 2018, Ilya Etingof <[email protected]>
# Copyright (c) 2018-2019, Ilya Etingof <[email protected]>
# License: https://github.com/etingof/apacheconfig/LICENSE.rst
#
import sys
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/__main__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# This file is part of apacheconfig software.
#
# Copyright (c) 2018, Ilya Etingof <[email protected]>
# Copyright (c) 2018-2019, Ilya Etingof <[email protected]>
# License: https://github.com/etingof/apacheconfig/LICENSE.rst
#
try:
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/test_lexer.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# This file is part of apacheconfig software.
#
# Copyright (c) 2018, Ilya Etingof <[email protected]>
# Copyright (c) 2018-2019, Ilya Etingof <[email protected]>
# License: https://github.com/etingof/apacheconfig/LICENSE.rst
#
import sys
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/test_loader.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# This file is part of apacheconfig software.
#
# Copyright (c) 2018, Ilya Etingof <[email protected]>
# Copyright (c) 2018-2019, Ilya Etingof <[email protected]>
# License: https://github.com/etingof/apacheconfig/LICENSE.rst
#
import os
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/test_parser.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# This file is part of apacheconfig software.
#
# Copyright (c) 2018, Ilya Etingof <[email protected]>
# Copyright (c) 2018-2019, Ilya Etingof <[email protected]>
# License: https://github.com/etingof/apacheconfig/LICENSE.rst
#
import sys
Expand Down

0 comments on commit 7126dbc

Please sign in to comment.