From da678359912d97abfaf000de8832d92b62718291 Mon Sep 17 00:00:00 2001 From: Nigel Small Date: Wed, 11 Jan 2017 14:15:19 +0000 Subject: [PATCH] Updated year from 2016 to 2017 --- NOTICE.txt | 2 +- docs/source/conf.py | 2 +- example.py | 2 +- examples/test_examples.py | 2 +- neo4j/__init__.py | 2 +- neo4j/__main__.py | 2 +- neo4j/meta.py | 2 +- neo4j/util.py | 2 +- neo4j/v1/__init__.py | 2 +- neo4j/v1/compat.py | 2 +- neo4j/v1/connection.py | 2 +- neo4j/v1/constants.py | 2 +- neo4j/v1/exceptions.py | 2 +- neo4j/v1/packstream.py | 2 +- neo4j/v1/session.py | 2 +- neo4j/v1/ssl_compat.py | 2 +- neo4j/v1/types.py | 2 +- runtests.py | 2 +- runtests.sh | 2 +- setup.py | 2 +- test/auth.py | 2 +- test/tck/configure_feature_files.py | 2 +- test/tck/environment.py | 2 +- test/tck/resultparser.py | 2 +- test/tck/steps/bolt_compability_steps.py | 2 +- test/tck/steps/cypher_compability_steps.py | 2 +- test/tck/steps/driver_auth_steps.py | 2 +- test/tck/steps/driver_equality_steps.py | 2 +- test/tck/steps/driver_result_api_steps.py | 2 +- test/tck/steps/error_reporting_steps.py | 2 +- test/tck/steps/statement_result.py | 2 +- test/tck/tck_util.py | 2 +- test/tck/test_value.py | 2 +- test/test_packstream.py | 2 +- test/test_session.py | 2 +- test/test_stability.py | 2 +- test/test_types.py | 2 +- test/util.py | 2 +- 38 files changed, 38 insertions(+), 38 deletions(-) diff --git a/NOTICE.txt b/NOTICE.txt index 212c8a0fb..a85beb0e6 100644 --- a/NOTICE.txt +++ b/NOTICE.txt @@ -1,5 +1,5 @@ Neo4j -Copyright © 2002-2016 Network Engine for Objects in Lund AB (referred to +Copyright © 2002-2017 Network Engine for Objects in Lund AB (referred to in this notice as "Neo Technology") [http://neotechnology.com] diff --git a/docs/source/conf.py b/docs/source/conf.py index e013e37d4..3c21e38fc 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -55,7 +55,7 @@ # General information about the project. project = 'Neo4j Bolt Driver for Python' -copyright = '2002-2016, Neo Technology' +copyright = '2002-2017, Neo Technology' author = 'Neo Technology' # The version info for the project you're documenting, acts as replacement for diff --git a/example.py b/example.py index 4d328243a..34e885052 100644 --- a/example.py +++ b/example.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright (c) 2002-2016 "Neo Technology," +# Copyright (c) 2002-2017 "Neo Technology," # Network Engine for Objects in Lund AB [http://neotechnology.com] # # This file is part of Neo4j. diff --git a/examples/test_examples.py b/examples/test_examples.py index 7b933380e..90dd8f300 100644 --- a/examples/test_examples.py +++ b/examples/test_examples.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright (c) 2002-2016 "Neo Technology," +# Copyright (c) 2002-2017 "Neo Technology," # Network Engine for Objects in Lund AB [http://neotechnology.com] # # This file is part of Neo4j. diff --git a/neo4j/__init__.py b/neo4j/__init__.py index 2ea7228c0..1ee9c6270 100644 --- a/neo4j/__init__.py +++ b/neo4j/__init__.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright (c) 2002-2016 "Neo Technology," +# Copyright (c) 2002-2017 "Neo Technology," # Network Engine for Objects in Lund AB [http://neotechnology.com] # # This file is part of Neo4j. diff --git a/neo4j/__main__.py b/neo4j/__main__.py index 2d2036587..e60798ba4 100644 --- a/neo4j/__main__.py +++ b/neo4j/__main__.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright (c) 2002-2016 "Neo Technology," +# Copyright (c) 2002-2017 "Neo Technology," # Network Engine for Objects in Lund AB [http://neotechnology.com] # # This file is part of Neo4j. diff --git a/neo4j/meta.py b/neo4j/meta.py index 344ab61d4..9c98b92f4 100644 --- a/neo4j/meta.py +++ b/neo4j/meta.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright (c) 2002-2016 "Neo Technology," +# Copyright (c) 2002-2017 "Neo Technology," # Network Engine for Objects in Lund AB [http://neotechnology.com] # # This file is part of Neo4j. diff --git a/neo4j/util.py b/neo4j/util.py index ddaa1e2e9..49c44700a 100644 --- a/neo4j/util.py +++ b/neo4j/util.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright (c) 2002-2016 "Neo Technology," +# Copyright (c) 2002-2017 "Neo Technology," # Network Engine for Objects in Lund AB [http://neotechnology.com] # # This file is part of Neo4j. diff --git a/neo4j/v1/__init__.py b/neo4j/v1/__init__.py index ab5f76641..619b55900 100644 --- a/neo4j/v1/__init__.py +++ b/neo4j/v1/__init__.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright (c) 2002-2016 "Neo Technology," +# Copyright (c) 2002-2017 "Neo Technology," # Network Engine for Objects in Lund AB [http://neotechnology.com] # # This file is part of Neo4j. diff --git a/neo4j/v1/compat.py b/neo4j/v1/compat.py index 7bae32b6d..0bb730c37 100644 --- a/neo4j/v1/compat.py +++ b/neo4j/v1/compat.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright (c) 2002-2016 "Neo Technology," +# Copyright (c) 2002-2017 "Neo Technology," # Network Engine for Objects in Lund AB [http://neotechnology.com] # # This file is part of Neo4j. diff --git a/neo4j/v1/connection.py b/neo4j/v1/connection.py index 21ce4cf1f..76e5729c2 100644 --- a/neo4j/v1/connection.py +++ b/neo4j/v1/connection.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright (c) 2002-2016 "Neo Technology," +# Copyright (c) 2002-2017 "Neo Technology," # Network Engine for Objects in Lund AB [http://neotechnology.com] # # This file is part of Neo4j. diff --git a/neo4j/v1/constants.py b/neo4j/v1/constants.py index 08707d208..7ae630222 100644 --- a/neo4j/v1/constants.py +++ b/neo4j/v1/constants.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright (c) 2002-2016 "Neo Technology," +# Copyright (c) 2002-2017 "Neo Technology," # Network Engine for Objects in Lund AB [http://neotechnology.com] # # This file is part of Neo4j. diff --git a/neo4j/v1/exceptions.py b/neo4j/v1/exceptions.py index ca85fd027..50bbf81af 100644 --- a/neo4j/v1/exceptions.py +++ b/neo4j/v1/exceptions.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright (c) 2002-2016 "Neo Technology," +# Copyright (c) 2002-2017 "Neo Technology," # Network Engine for Objects in Lund AB [http://neotechnology.com] # # This file is part of Neo4j. diff --git a/neo4j/v1/packstream.py b/neo4j/v1/packstream.py index 76259a840..8ede907aa 100644 --- a/neo4j/v1/packstream.py +++ b/neo4j/v1/packstream.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright (c) 2002-2016 "Neo Technology," +# Copyright (c) 2002-2017 "Neo Technology," # Network Engine for Objects in Lund AB [http://neotechnology.com] # # This file is part of Neo4j. diff --git a/neo4j/v1/session.py b/neo4j/v1/session.py index ef7a84459..782482dca 100644 --- a/neo4j/v1/session.py +++ b/neo4j/v1/session.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright (c) 2002-2016 "Neo Technology," +# Copyright (c) 2002-2017 "Neo Technology," # Network Engine for Objects in Lund AB [http://neotechnology.com] # # This file is part of Neo4j. diff --git a/neo4j/v1/ssl_compat.py b/neo4j/v1/ssl_compat.py index 767a2cb98..68bf219dc 100644 --- a/neo4j/v1/ssl_compat.py +++ b/neo4j/v1/ssl_compat.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright (c) 2002-2016 "Neo Technology," +# Copyright (c) 2002-2017 "Neo Technology," # Network Engine for Objects in Lund AB [http://neotechnology.com] # # This file is part of Neo4j. diff --git a/neo4j/v1/types.py b/neo4j/v1/types.py index 21d19a036..cf3bb7e7b 100644 --- a/neo4j/v1/types.py +++ b/neo4j/v1/types.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright (c) 2002-2016 "Neo Technology," +# Copyright (c) 2002-2017 "Neo Technology," # Network Engine for Objects in Lund AB [http://neotechnology.com] # # This file is part of Neo4j. diff --git a/runtests.py b/runtests.py index f78de3468..69c5c30c1 100644 --- a/runtests.py +++ b/runtests.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright (c) 2002-2016 "Neo Technology," +# Copyright (c) 2002-2017 "Neo Technology," # Network Engine for Objects in Lund AB [http://neotechnology.com] # # This file is part of Neo4j. diff --git a/runtests.sh b/runtests.sh index b2698e98f..8094d7e80 100755 --- a/runtests.sh +++ b/runtests.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -# Copyright (c) 2002-2016 "Neo Technology," +# Copyright (c) 2002-2017 "Neo Technology," # Network Engine for Objects in Lund AB [http://neotechnology.com] # # This file is part of Neo4j. diff --git a/setup.py b/setup.py index ea4a6002d..0d4c1a55e 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright (c) 2002-2016 "Neo Technology," +# Copyright (c) 2002-2017 "Neo Technology," # Network Engine for Objects in Lund AB [http://neotechnology.com] # # This file is part of Neo4j. diff --git a/test/auth.py b/test/auth.py index a84a31570..d07471128 100644 --- a/test/auth.py +++ b/test/auth.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright (c) 2002-2016 "Neo Technology," +# Copyright (c) 2002-2017 "Neo Technology," # Network Engine for Objects in Lund AB [http://neotechnology.com] # # This file is part of Neo4j. diff --git a/test/tck/configure_feature_files.py b/test/tck/configure_feature_files.py index e0c2768ac..1cf2294be 100644 --- a/test/tck/configure_feature_files.py +++ b/test/tck/configure_feature_files.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright (c) 2002-2016 "Neo Technology," +# Copyright (c) 2002-2017 "Neo Technology," # Network Engine for Objects in Lund AB [http://neotechnology.com] # # This file is part of Neo4j. diff --git a/test/tck/environment.py b/test/tck/environment.py index f64025789..cbbce30d0 100644 --- a/test/tck/environment.py +++ b/test/tck/environment.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright (c) 2002-2016 "Neo Technology," +# Copyright (c) 2002-2017 "Neo Technology," # Network Engine for Objects in Lund AB [http://neotechnology.com] # # This file is part of Neo4j. diff --git a/test/tck/resultparser.py b/test/tck/resultparser.py index 76fdc638c..ef2b117d4 100644 --- a/test/tck/resultparser.py +++ b/test/tck/resultparser.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright (c) 2002-2016 "Neo Technology," +# Copyright (c) 2002-2017 "Neo Technology," # Network Engine for Objects in Lund AB [http://neotechnology.com] # # This file is part of Neo4j. diff --git a/test/tck/steps/bolt_compability_steps.py b/test/tck/steps/bolt_compability_steps.py index e56af1625..127b2a575 100644 --- a/test/tck/steps/bolt_compability_steps.py +++ b/test/tck/steps/bolt_compability_steps.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright (c) 2002-2016 "Neo Technology," +# Copyright (c) 2002-2017 "Neo Technology," # Network Engine for Objects in Lund AB [http://neotechnology.com] # # This file is part of Neo4j. diff --git a/test/tck/steps/cypher_compability_steps.py b/test/tck/steps/cypher_compability_steps.py index 1231b6635..0213e418b 100644 --- a/test/tck/steps/cypher_compability_steps.py +++ b/test/tck/steps/cypher_compability_steps.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright (c) 2002-2016 "Neo Technology," +# Copyright (c) 2002-2017 "Neo Technology," # Network Engine for Objects in Lund AB [http://neotechnology.com] # # This file is part of Neo4j. diff --git a/test/tck/steps/driver_auth_steps.py b/test/tck/steps/driver_auth_steps.py index edc9d266a..77008b52d 100644 --- a/test/tck/steps/driver_auth_steps.py +++ b/test/tck/steps/driver_auth_steps.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright (c) 2002-2016 "Neo Technology," +# Copyright (c) 2002-2017 "Neo Technology," # Network Engine for Objects in Lund AB [http://neotechnology.com] # # This file is part of Neo4j. diff --git a/test/tck/steps/driver_equality_steps.py b/test/tck/steps/driver_equality_steps.py index 98c0b6029..fb71f984f 100644 --- a/test/tck/steps/driver_equality_steps.py +++ b/test/tck/steps/driver_equality_steps.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright (c) 2002-2016 "Neo Technology," +# Copyright (c) 2002-2017 "Neo Technology," # Network Engine for Objects in Lund AB [http://neotechnology.com] # # This file is part of Neo4j. diff --git a/test/tck/steps/driver_result_api_steps.py b/test/tck/steps/driver_result_api_steps.py index ddcc606aa..ad86807a6 100644 --- a/test/tck/steps/driver_result_api_steps.py +++ b/test/tck/steps/driver_result_api_steps.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright (c) 2002-2016 "Neo Technology," +# Copyright (c) 2002-2017 "Neo Technology," # Network Engine for Objects in Lund AB [http://neotechnology.com] # # This file is part of Neo4j. diff --git a/test/tck/steps/error_reporting_steps.py b/test/tck/steps/error_reporting_steps.py index cb19fccaa..0ca05e3e8 100644 --- a/test/tck/steps/error_reporting_steps.py +++ b/test/tck/steps/error_reporting_steps.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright (c) 2002-2016 "Neo Technology," +# Copyright (c) 2002-2017 "Neo Technology," # Network Engine for Objects in Lund AB [http://neotechnology.com] # # This file is part of Neo4j. diff --git a/test/tck/steps/statement_result.py b/test/tck/steps/statement_result.py index 57a4aaf4e..7098fa4c5 100644 --- a/test/tck/steps/statement_result.py +++ b/test/tck/steps/statement_result.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright (c) 2002-2016 "Neo Technology," +# Copyright (c) 2002-2017 "Neo Technology," # Network Engine for Objects in Lund AB [http://neotechnology.com] # # This file is part of Neo4j. diff --git a/test/tck/tck_util.py b/test/tck/tck_util.py index 063e0635f..2cf43f056 100644 --- a/test/tck/tck_util.py +++ b/test/tck/tck_util.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright (c) 2002-2016 "Neo Technology," +# Copyright (c) 2002-2017 "Neo Technology," # Network Engine for Objects in Lund AB [http://neotechnology.com] # # This file is part of Neo4j. diff --git a/test/tck/test_value.py b/test/tck/test_value.py index 5ed3f037b..3f421814e 100644 --- a/test/tck/test_value.py +++ b/test/tck/test_value.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright (c) 2002-2016 "Neo Technology," +# Copyright (c) 2002-2017 "Neo Technology," # Network Engine for Objects in Lund AB [http://neotechnology.com] # # This file is part of Neo4j. diff --git a/test/test_packstream.py b/test/test_packstream.py index 8c092c177..44b0d795b 100644 --- a/test/test_packstream.py +++ b/test/test_packstream.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright (c) 2002-2016 "Neo Technology," +# Copyright (c) 2002-2017 "Neo Technology," # Network Engine for Objects in Lund AB [http://neotechnology.com] # # This file is part of Neo4j. diff --git a/test/test_session.py b/test/test_session.py index 5a5b66af6..1b884c34a 100644 --- a/test/test_session.py +++ b/test/test_session.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright (c) 2002-2016 "Neo Technology," +# Copyright (c) 2002-2017 "Neo Technology," # Network Engine for Objects in Lund AB [http://neotechnology.com] # # This file is part of Neo4j. diff --git a/test/test_stability.py b/test/test_stability.py index 88f940932..3ff07ea53 100644 --- a/test/test_stability.py +++ b/test/test_stability.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright (c) 2002-2016 "Neo Technology," +# Copyright (c) 2002-2017 "Neo Technology," # Network Engine for Objects in Lund AB [http://neotechnology.com] # # This file is part of Neo4j. diff --git a/test/test_types.py b/test/test_types.py index 121f79d4f..097dd7eef 100644 --- a/test/test_types.py +++ b/test/test_types.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright (c) 2002-2016 "Neo Technology," +# Copyright (c) 2002-2017 "Neo Technology," # Network Engine for Objects in Lund AB [http://neotechnology.com] # # This file is part of Neo4j. diff --git a/test/util.py b/test/util.py index 5d7b230a1..523534064 100644 --- a/test/util.py +++ b/test/util.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright (c) 2002-2016 "Neo Technology," +# Copyright (c) 2002-2017 "Neo Technology," # Network Engine for Objects in Lund AB [http://neotechnology.com] # # This file is part of Neo4j.