From 425d1c367c2e7c585cb85b1b379cf5a3a1c49792 Mon Sep 17 00:00:00 2001 From: Sean Corfield Date: Wed, 1 Jan 2020 13:13:41 -0800 Subject: [PATCH] Extend copyright to 2020 --- README.md | 2 +- src/next/jdbc.clj | 2 +- src/next/jdbc/connection.clj | 2 +- src/next/jdbc/date_time.clj | 2 +- src/next/jdbc/optional.clj | 2 +- src/next/jdbc/prepare.clj | 2 +- src/next/jdbc/protocols.clj | 2 +- src/next/jdbc/quoted.clj | 2 +- src/next/jdbc/result_set.clj | 2 +- src/next/jdbc/specs.clj | 2 +- src/next/jdbc/sql.clj | 2 +- src/next/jdbc/sql/builder.clj | 2 +- src/next/jdbc/transaction.clj | 2 +- test/next/jdbc/connection_test.clj | 2 +- test/next/jdbc/date_time_test.clj | 2 +- test/next/jdbc/middleware.clj | 2 +- test/next/jdbc/middleware_test.clj | 2 +- test/next/jdbc/optional_test.clj | 2 +- test/next/jdbc/prepare_test.clj | 2 +- test/next/jdbc/protocols_test.clj | 2 +- test/next/jdbc/quoted_test.clj | 2 +- test/next/jdbc/result_set_test.clj | 2 +- test/next/jdbc/specs_test.clj | 2 +- test/next/jdbc/sql/builder_test.clj | 2 +- test/next/jdbc/sql_test.clj | 2 +- test/next/jdbc/test_fixtures.clj | 2 +- test/next/jdbc/transaction_test.clj | 2 +- test/next/jdbc_test.clj | 2 +- 28 files changed, 28 insertions(+), 28 deletions(-) diff --git a/README.md b/README.md index 83723c2..8b60227 100644 --- a/README.md +++ b/README.md @@ -75,6 +75,6 @@ In addition, convenience functions -- "syntactic sugar" -- are provided to inser ## License -Copyright © 2018-2019 Sean Corfield +Copyright © 2018-2020 Sean Corfield Distributed under the Eclipse Public License version 1.0. diff --git a/src/next/jdbc.clj b/src/next/jdbc.clj index 152a5eb..ba39dec 100644 --- a/src/next/jdbc.clj +++ b/src/next/jdbc.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2018-2019 Sean Corfield, all rights reserved +;; copyright (c) 2018-2020 Sean Corfield, all rights reserved (ns next.jdbc "The public API of the next generation java.jdbc library. diff --git a/src/next/jdbc/connection.clj b/src/next/jdbc/connection.clj index bcdb335..78d40ed 100644 --- a/src/next/jdbc/connection.clj +++ b/src/next/jdbc/connection.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2018-2019 Sean Corfield, all rights reserved +;; copyright (c) 2018-2020 Sean Corfield, all rights reserved (ns next.jdbc.connection "Standard implementations of `get-datasource` and `get-connection`. diff --git a/src/next/jdbc/date_time.clj b/src/next/jdbc/date_time.clj index 02dd8e2..3ae2911 100644 --- a/src/next/jdbc/date_time.clj +++ b/src/next/jdbc/date_time.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2019 Sean Corfield, all rights reserved +;; copyright (c) 2019-2020 Sean Corfield, all rights reserved (ns next.jdbc.date-time "Optional namespace that extends `next.jdbc.prepare/SettableParameter` diff --git a/src/next/jdbc/optional.clj b/src/next/jdbc/optional.clj index 29ef73d..5704103 100644 --- a/src/next/jdbc/optional.clj +++ b/src/next/jdbc/optional.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2019 Sean Corfield, all rights reserved +;; copyright (c) 2019-2020 Sean Corfield, all rights reserved (ns next.jdbc.optional "Builders that treat NULL SQL values as 'optional' and omit the diff --git a/src/next/jdbc/prepare.clj b/src/next/jdbc/prepare.clj index 65be567..c8c3bb2 100644 --- a/src/next/jdbc/prepare.clj +++ b/src/next/jdbc/prepare.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2018-2019 Sean Corfield, all rights reserved +;; copyright (c) 2018-2020 Sean Corfield, all rights reserved (ns next.jdbc.prepare "Mostly an implementation namespace for how `PreparedStatement` objects are diff --git a/src/next/jdbc/protocols.clj b/src/next/jdbc/protocols.clj index 2d15320..1c75805 100644 --- a/src/next/jdbc/protocols.clj +++ b/src/next/jdbc/protocols.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2018-2019 Sean Corfield, all rights reserved +;; copyright (c) 2018-2020 Sean Corfield, all rights reserved (ns next.jdbc.protocols "This is the extensible core of the next generation java.jdbc library. diff --git a/src/next/jdbc/quoted.clj b/src/next/jdbc/quoted.clj index 598354a..d03aece 100644 --- a/src/next/jdbc/quoted.clj +++ b/src/next/jdbc/quoted.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2019 Sean Corfield, all rights reserved +;; copyright (c) 2019-2020 Sean Corfield, all rights reserved (ns next.jdbc.quoted "Provides functions for use with the `:table-fn` and `:column-fn` options diff --git a/src/next/jdbc/result_set.clj b/src/next/jdbc/result_set.clj index 98c458e..6bf8f39 100644 --- a/src/next/jdbc/result_set.clj +++ b/src/next/jdbc/result_set.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2018-2019 Sean Corfield, all rights reserved +;; copyright (c) 2018-2020 Sean Corfield, all rights reserved (ns next.jdbc.result-set "An implementation of `ResultSet` handling functions. diff --git a/src/next/jdbc/specs.clj b/src/next/jdbc/specs.clj index d0e458c..caec4b1 100644 --- a/src/next/jdbc/specs.clj +++ b/src/next/jdbc/specs.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2019 Sean Corfield, all rights reserved +;; copyright (c) 2019-2020 Sean Corfield, all rights reserved (ns next.jdbc.specs "Specs for the core API of next.jdbc. diff --git a/src/next/jdbc/sql.clj b/src/next/jdbc/sql.clj index dbbe9b3..e01303d 100644 --- a/src/next/jdbc/sql.clj +++ b/src/next/jdbc/sql.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2019 Sean Corfield, all rights reserved +;; copyright (c) 2019-2020 Sean Corfield, all rights reserved (ns next.jdbc.sql "Some utility functions that make common operations easier by diff --git a/src/next/jdbc/sql/builder.clj b/src/next/jdbc/sql/builder.clj index ecda634..331d3e8 100644 --- a/src/next/jdbc/sql/builder.clj +++ b/src/next/jdbc/sql/builder.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2019 Sean Corfield, all rights reserved +;; copyright (c) 2019-2020 Sean Corfield, all rights reserved (ns next.jdbc.sql.builder "Some utility functions for building SQL strings. diff --git a/src/next/jdbc/transaction.clj b/src/next/jdbc/transaction.clj index a64b971..a92ac6c 100644 --- a/src/next/jdbc/transaction.clj +++ b/src/next/jdbc/transaction.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2018-2019 Sean Corfield, all rights reserved +;; copyright (c) 2018-2020 Sean Corfield, all rights reserved (ns ^:no-doc next.jdbc.transaction "Implementation of SQL transaction logic." diff --git a/test/next/jdbc/connection_test.clj b/test/next/jdbc/connection_test.clj index eb3c2b4..6fa438b 100644 --- a/test/next/jdbc/connection_test.clj +++ b/test/next/jdbc/connection_test.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2019 Sean Corfield, all rights reserved +;; copyright (c) 2019-2020 Sean Corfield, all rights reserved (ns next.jdbc.connection-test "Tests for the main hash map spec to JDBC URL logic and the get-datasource diff --git a/test/next/jdbc/date_time_test.clj b/test/next/jdbc/date_time_test.clj index 581559d..193dd3d 100644 --- a/test/next/jdbc/date_time_test.clj +++ b/test/next/jdbc/date_time_test.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2019 Sean Corfield, all rights reserved +;; copyright (c) 2019-2020 Sean Corfield, all rights reserved (ns next.jdbc.date-time-test "Date/time parameter auto-conversion tests. diff --git a/test/next/jdbc/middleware.clj b/test/next/jdbc/middleware.clj index aacfa4d..c8e920a 100644 --- a/test/next/jdbc/middleware.clj +++ b/test/next/jdbc/middleware.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2019 Sean Corfield, all rights reserved +;; copyright (c) 2019-2020 Sean Corfield, all rights reserved (ns next.jdbc.middleware "This is just an experimental sketch of what it might look like to be diff --git a/test/next/jdbc/middleware_test.clj b/test/next/jdbc/middleware_test.clj index 754e1c9..2f88cd6 100644 --- a/test/next/jdbc/middleware_test.clj +++ b/test/next/jdbc/middleware_test.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2019 Sean Corfield, all rights reserved +;; copyright (c) 2019-2020 Sean Corfield, all rights reserved (ns next.jdbc.middleware-test (:require [clojure.test :refer [deftest is testing use-fixtures]] diff --git a/test/next/jdbc/optional_test.clj b/test/next/jdbc/optional_test.clj index 09e0357..9360de1 100644 --- a/test/next/jdbc/optional_test.clj +++ b/test/next/jdbc/optional_test.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2019 Sean Corfield, all rights reserved +;; copyright (c) 2019-2020 Sean Corfield, all rights reserved (ns next.jdbc.optional-test "Test namespace for the optional builder functions." diff --git a/test/next/jdbc/prepare_test.clj b/test/next/jdbc/prepare_test.clj index 5f45666..04e71c0 100644 --- a/test/next/jdbc/prepare_test.clj +++ b/test/next/jdbc/prepare_test.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2019 Sean Corfield, all rights reserved +;; copyright (c) 2019-2020 Sean Corfield, all rights reserved (ns next.jdbc.prepare-test "Stub test namespace for PreparedStatement creation etc. diff --git a/test/next/jdbc/protocols_test.clj b/test/next/jdbc/protocols_test.clj index b5be805..dfacdcf 100644 --- a/test/next/jdbc/protocols_test.clj +++ b/test/next/jdbc/protocols_test.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2019 Sean Corfield, all rights reserved +;; copyright (c) 2019-2020 Sean Corfield, all rights reserved (ns next.jdbc.protocols-test "Stub test namespace for low-level protocols. Nothing can really be tested diff --git a/test/next/jdbc/quoted_test.clj b/test/next/jdbc/quoted_test.clj index e62babb..c2b8836 100644 --- a/test/next/jdbc/quoted_test.clj +++ b/test/next/jdbc/quoted_test.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2019 Sean Corfield, all rights reserved +;; copyright (c) 2019-2020 Sean Corfield, all rights reserved (ns next.jdbc.quoted-test "Basic tests for quoting strategies. These are also tested indirectly diff --git a/test/next/jdbc/result_set_test.clj b/test/next/jdbc/result_set_test.clj index d3a601a..7cd1e26 100644 --- a/test/next/jdbc/result_set_test.clj +++ b/test/next/jdbc/result_set_test.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2019 Sean Corfield, all rights reserved +;; copyright (c) 2019-2020 Sean Corfield, all rights reserved (ns next.jdbc.result-set-test "Test namespace for the result set functions. diff --git a/test/next/jdbc/specs_test.clj b/test/next/jdbc/specs_test.clj index 56d92f4..a5d3614 100644 --- a/test/next/jdbc/specs_test.clj +++ b/test/next/jdbc/specs_test.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2019 Sean Corfield, all rights reserved +;; copyright (c) 2019-2020 Sean Corfield, all rights reserved (ns next.jdbc.specs-test "Stub test namespace for the specs. diff --git a/test/next/jdbc/sql/builder_test.clj b/test/next/jdbc/sql/builder_test.clj index 8fac109..bd92c5c 100644 --- a/test/next/jdbc/sql/builder_test.clj +++ b/test/next/jdbc/sql/builder_test.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2019 Sean Corfield, all rights reserved +;; copyright (c) 2019-2020 Sean Corfield, all rights reserved (ns next.jdbc.sql.builder-test "Tests for the SQL string building functions in next.jdbc.sql.builder." diff --git a/test/next/jdbc/sql_test.clj b/test/next/jdbc/sql_test.clj index 57df38e..5c0421e 100644 --- a/test/next/jdbc/sql_test.clj +++ b/test/next/jdbc/sql_test.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2019 Sean Corfield, all rights reserved +;; copyright (c) 2019-2020 Sean Corfield, all rights reserved (ns next.jdbc.sql-test "Tests for the syntactic sugar SQL functions." diff --git a/test/next/jdbc/test_fixtures.clj b/test/next/jdbc/test_fixtures.clj index db341eb..8905a48 100644 --- a/test/next/jdbc/test_fixtures.clj +++ b/test/next/jdbc/test_fixtures.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2019 Sean Corfield, all rights reserved +;; copyright (c) 2019-2020 Sean Corfield, all rights reserved (ns next.jdbc.test-fixtures "Multi-database testing fixtures." diff --git a/test/next/jdbc/transaction_test.clj b/test/next/jdbc/transaction_test.clj index c817ba3..2c2c852 100644 --- a/test/next/jdbc/transaction_test.clj +++ b/test/next/jdbc/transaction_test.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2019 Sean Corfield, all rights reserved +;; copyright (c) 2019-2020 Sean Corfield, all rights reserved (ns next.jdbc.transaction-test "Stub test namespace for transaction handling." diff --git a/test/next/jdbc_test.clj b/test/next/jdbc_test.clj index b87678a..2a77008 100644 --- a/test/next/jdbc_test.clj +++ b/test/next/jdbc_test.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2019 Sean Corfield, all rights reserved +;; copyright (c) 2019-2020 Sean Corfield, all rights reserved (ns next.jdbc-test "Basic tests for the primary API of `next.jdbc`."