diff --git a/README.md b/README.md index 862b476..233118b 100644 --- a/README.md +++ b/README.md @@ -82,6 +82,6 @@ In addition, convenience functions -- "syntactic sugar" -- are provided to inser ## License -Copyright © 2018-2020 Sean Corfield +Copyright © 2018-2021 Sean Corfield Distributed under the Eclipse Public License version 1.0. diff --git a/src/next/jdbc.clj b/src/next/jdbc.clj index c40a4fe..4937f8f 100644 --- a/src/next/jdbc.clj +++ b/src/next/jdbc.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2018-2020 Sean Corfield, all rights reserved +;; copyright (c) 2018-2021 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 2fba6e2..f7a1a3f 100644 --- a/src/next/jdbc/connection.clj +++ b/src/next/jdbc/connection.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2018-2020 Sean Corfield, all rights reserved +;; copyright (c) 2018-2021 Sean Corfield, all rights reserved (ns next.jdbc.connection "Standard implementations of `get-datasource` and `get-connection`. diff --git a/src/next/jdbc/datafy.clj b/src/next/jdbc/datafy.clj index 39451e6..6d9e379 100644 --- a/src/next/jdbc/datafy.clj +++ b/src/next/jdbc/datafy.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2020 Sean Corfield, all rights reserved +;; copyright (c) 2020-2021 Sean Corfield, all rights reserved (ns next.jdbc.datafy "This namespace provides datafication of several JDBC object types, diff --git a/src/next/jdbc/date_time.clj b/src/next/jdbc/date_time.clj index 642d767..c268f63 100644 --- a/src/next/jdbc/date_time.clj +++ b/src/next/jdbc/date_time.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2019-2020 Sean Corfield, all rights reserved +;; copyright (c) 2019-2021 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 273e464..522a1a8 100644 --- a/src/next/jdbc/optional.clj +++ b/src/next/jdbc/optional.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2019-2020 Sean Corfield, all rights reserved +;; copyright (c) 2019-2021 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 8495bfd..1c1599c 100644 --- a/src/next/jdbc/prepare.clj +++ b/src/next/jdbc/prepare.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2018-2020 Sean Corfield, all rights reserved +;; copyright (c) 2018-2021 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 1c75805..22aa209 100644 --- a/src/next/jdbc/protocols.clj +++ b/src/next/jdbc/protocols.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2018-2020 Sean Corfield, all rights reserved +;; copyright (c) 2018-2021 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 d03aece..5f46edb 100644 --- a/src/next/jdbc/quoted.clj +++ b/src/next/jdbc/quoted.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2019-2020 Sean Corfield, all rights reserved +;; copyright (c) 2019-2021 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 966b197..35d8b05 100644 --- a/src/next/jdbc/result_set.clj +++ b/src/next/jdbc/result_set.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2018-2020 Sean Corfield, all rights reserved +;; copyright (c) 2018-2021 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 99ccc9d..2c55a88 100644 --- a/src/next/jdbc/specs.clj +++ b/src/next/jdbc/specs.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2019-2020 Sean Corfield, all rights reserved +;; copyright (c) 2019-2021 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 882ddd3..b0e8bb7 100644 --- a/src/next/jdbc/sql.clj +++ b/src/next/jdbc/sql.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2019-2020 Sean Corfield, all rights reserved +;; copyright (c) 2019-2021 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 b2f7a5f..be51c67 100644 --- a/src/next/jdbc/sql/builder.clj +++ b/src/next/jdbc/sql/builder.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2019-2020 Sean Corfield, all rights reserved +;; copyright (c) 2019-2021 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 b1aea8a..84789ac 100644 --- a/src/next/jdbc/transaction.clj +++ b/src/next/jdbc/transaction.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2018-2020 Sean Corfield, all rights reserved +;; copyright (c) 2018-2021 Sean Corfield, all rights reserved (ns next.jdbc.transaction "Implementation of SQL transaction logic. diff --git a/src/next/jdbc/types.clj b/src/next/jdbc/types.clj index 23ffa27..642c54e 100644 --- a/src/next/jdbc/types.clj +++ b/src/next/jdbc/types.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2018-2020 Sean Corfield, all rights reserved +;; copyright (c) 2018-2021 Sean Corfield, all rights reserved (ns next.jdbc.types "Provides convenience functions for wrapping values you pass into SQL diff --git a/test/next/jdbc/connection_test.clj b/test/next/jdbc/connection_test.clj index 356026e..6fa0715 100644 --- a/test/next/jdbc/connection_test.clj +++ b/test/next/jdbc/connection_test.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2019-2020 Sean Corfield, all rights reserved +;; copyright (c) 2019-2021 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/datafy_test.clj b/test/next/jdbc/datafy_test.clj index b007bab..d2b8369 100644 --- a/test/next/jdbc/datafy_test.clj +++ b/test/next/jdbc/datafy_test.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2020 Sean Corfield, all rights reserved +;; copyright (c) 2020-2021 Sean Corfield, all rights reserved (ns next.jdbc.datafy-test "Tests for the datafy extensions over JDBC types." diff --git a/test/next/jdbc/date_time_test.clj b/test/next/jdbc/date_time_test.clj index 193dd3d..c8805b0 100644 --- a/test/next/jdbc/date_time_test.clj +++ b/test/next/jdbc/date_time_test.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2019-2020 Sean Corfield, all rights reserved +;; copyright (c) 2019-2021 Sean Corfield, all rights reserved (ns next.jdbc.date-time-test "Date/time parameter auto-conversion tests. diff --git a/test/next/jdbc/default_options_test.clj b/test/next/jdbc/default_options_test.clj index 778939a..2636a86 100644 --- a/test/next/jdbc/default_options_test.clj +++ b/test/next/jdbc/default_options_test.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2020 Sean Corfield, all rights reserved +;; copyright (c) 2020-2021 Sean Corfield, all rights reserved (ns next.jdbc.default-options-test "Stub test namespace for default options. Nothing can really be tested diff --git a/test/next/jdbc/optional_test.clj b/test/next/jdbc/optional_test.clj index 9360de1..6049447 100644 --- a/test/next/jdbc/optional_test.clj +++ b/test/next/jdbc/optional_test.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2019-2020 Sean Corfield, all rights reserved +;; copyright (c) 2019-2021 Sean Corfield, all rights reserved (ns next.jdbc.optional-test "Test namespace for the optional builder functions." diff --git a/test/next/jdbc/plan_test.clj b/test/next/jdbc/plan_test.clj index c4793aa..d33daad 100644 --- a/test/next/jdbc/plan_test.clj +++ b/test/next/jdbc/plan_test.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2020 Sean Corfield, all rights reserved +;; copyright (c) 2020-2021 Sean Corfield, all rights reserved (ns next.jdbc.plan-test "Tests for the plan helpers." diff --git a/test/next/jdbc/prepare_test.clj b/test/next/jdbc/prepare_test.clj index 8ac5708..51fd542 100644 --- a/test/next/jdbc/prepare_test.clj +++ b/test/next/jdbc/prepare_test.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2019-2020 Sean Corfield, all rights reserved +;; copyright (c) 2019-2021 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 dfacdcf..bb051be 100644 --- a/test/next/jdbc/protocols_test.clj +++ b/test/next/jdbc/protocols_test.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2019-2020 Sean Corfield, all rights reserved +;; copyright (c) 2019-2021 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 c2b8836..67d18cd 100644 --- a/test/next/jdbc/quoted_test.clj +++ b/test/next/jdbc/quoted_test.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2019-2020 Sean Corfield, all rights reserved +;; copyright (c) 2019-2021 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 fbcb197..5b502a8 100644 --- a/test/next/jdbc/result_set_test.clj +++ b/test/next/jdbc/result_set_test.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2019-2020 Sean Corfield, all rights reserved +;; copyright (c) 2019-2021 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 a5d3614..8f01097 100644 --- a/test/next/jdbc/specs_test.clj +++ b/test/next/jdbc/specs_test.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2019-2020 Sean Corfield, all rights reserved +;; copyright (c) 2019-2021 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 82e6132..d1a0b55 100644 --- a/test/next/jdbc/sql/builder_test.clj +++ b/test/next/jdbc/sql/builder_test.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2019-2020 Sean Corfield, all rights reserved +;; copyright (c) 2019-2021 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 bb05885..117ad6b 100644 --- a/test/next/jdbc/sql_test.clj +++ b/test/next/jdbc/sql_test.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2019-2020 Sean Corfield, all rights reserved +;; copyright (c) 2019-2021 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 9c0714e..220f26e 100644 --- a/test/next/jdbc/test_fixtures.clj +++ b/test/next/jdbc/test_fixtures.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2019-2020 Sean Corfield, all rights reserved +;; copyright (c) 2019-2021 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 891c8d0..8d68332 100644 --- a/test/next/jdbc/transaction_test.clj +++ b/test/next/jdbc/transaction_test.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2019-2020 Sean Corfield, all rights reserved +;; copyright (c) 2019-2021 Sean Corfield, all rights reserved (ns next.jdbc.transaction-test "Stub test namespace for transaction handling." diff --git a/test/next/jdbc/types_test.clj b/test/next/jdbc/types_test.clj index ba36a0c..5a76d20 100644 --- a/test/next/jdbc/types_test.clj +++ b/test/next/jdbc/types_test.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2020 Sean Corfield, all rights reserved +;; copyright (c) 2020-2021 Sean Corfield, all rights reserved (ns next.jdbc.types-test "Some tests for the type-assist functions." diff --git a/test/next/jdbc_test.clj b/test/next/jdbc_test.clj index 8866fdf..d8e3a1d 100644 --- a/test/next/jdbc_test.clj +++ b/test/next/jdbc_test.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2019-2020 Sean Corfield, all rights reserved +;; copyright (c) 2019-2021 Sean Corfield, all rights reserved (ns next.jdbc-test "Basic tests for the primary API of `next.jdbc`."