Extend copyright to 2020

This commit is contained in:
Sean Corfield 2020-01-01 13:13:41 -08:00
parent f23b146143
commit 425d1c367c
28 changed files with 28 additions and 28 deletions

View file

@ -75,6 +75,6 @@ In addition, convenience functions -- "syntactic sugar" -- are provided to inser
## License ## License
Copyright © 2018-2019 Sean Corfield Copyright © 2018-2020 Sean Corfield
Distributed under the Eclipse Public License version 1.0. Distributed under the Eclipse Public License version 1.0.

View file

@ -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 (ns next.jdbc
"The public API of the next generation java.jdbc library. "The public API of the next generation java.jdbc library.

View file

@ -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 (ns next.jdbc.connection
"Standard implementations of `get-datasource` and `get-connection`. "Standard implementations of `get-datasource` and `get-connection`.

View file

@ -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 (ns next.jdbc.date-time
"Optional namespace that extends `next.jdbc.prepare/SettableParameter` "Optional namespace that extends `next.jdbc.prepare/SettableParameter`

View file

@ -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 (ns next.jdbc.optional
"Builders that treat NULL SQL values as 'optional' and omit the "Builders that treat NULL SQL values as 'optional' and omit the

View file

@ -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 (ns next.jdbc.prepare
"Mostly an implementation namespace for how `PreparedStatement` objects are "Mostly an implementation namespace for how `PreparedStatement` objects are

View file

@ -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 (ns next.jdbc.protocols
"This is the extensible core of the next generation java.jdbc library. "This is the extensible core of the next generation java.jdbc library.

View file

@ -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 (ns next.jdbc.quoted
"Provides functions for use with the `:table-fn` and `:column-fn` options "Provides functions for use with the `:table-fn` and `:column-fn` options

View file

@ -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 (ns next.jdbc.result-set
"An implementation of `ResultSet` handling functions. "An implementation of `ResultSet` handling functions.

View file

@ -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 (ns next.jdbc.specs
"Specs for the core API of next.jdbc. "Specs for the core API of next.jdbc.

View file

@ -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 (ns next.jdbc.sql
"Some utility functions that make common operations easier by "Some utility functions that make common operations easier by

View file

@ -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 (ns next.jdbc.sql.builder
"Some utility functions for building SQL strings. "Some utility functions for building SQL strings.

View file

@ -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 (ns ^:no-doc next.jdbc.transaction
"Implementation of SQL transaction logic." "Implementation of SQL transaction logic."

View file

@ -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 (ns next.jdbc.connection-test
"Tests for the main hash map spec to JDBC URL logic and the get-datasource "Tests for the main hash map spec to JDBC URL logic and the get-datasource

View file

@ -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 (ns next.jdbc.date-time-test
"Date/time parameter auto-conversion tests. "Date/time parameter auto-conversion tests.

View file

@ -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 (ns next.jdbc.middleware
"This is just an experimental sketch of what it might look like to be "This is just an experimental sketch of what it might look like to be

View file

@ -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 (ns next.jdbc.middleware-test
(:require [clojure.test :refer [deftest is testing use-fixtures]] (:require [clojure.test :refer [deftest is testing use-fixtures]]

View file

@ -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 (ns next.jdbc.optional-test
"Test namespace for the optional builder functions." "Test namespace for the optional builder functions."

View file

@ -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 (ns next.jdbc.prepare-test
"Stub test namespace for PreparedStatement creation etc. "Stub test namespace for PreparedStatement creation etc.

View file

@ -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 (ns next.jdbc.protocols-test
"Stub test namespace for low-level protocols. Nothing can really be tested "Stub test namespace for low-level protocols. Nothing can really be tested

View file

@ -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 (ns next.jdbc.quoted-test
"Basic tests for quoting strategies. These are also tested indirectly "Basic tests for quoting strategies. These are also tested indirectly

View file

@ -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 (ns next.jdbc.result-set-test
"Test namespace for the result set functions. "Test namespace for the result set functions.

View file

@ -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 (ns next.jdbc.specs-test
"Stub test namespace for the specs. "Stub test namespace for the specs.

View file

@ -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 (ns next.jdbc.sql.builder-test
"Tests for the SQL string building functions in next.jdbc.sql.builder." "Tests for the SQL string building functions in next.jdbc.sql.builder."

View file

@ -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 (ns next.jdbc.sql-test
"Tests for the syntactic sugar SQL functions." "Tests for the syntactic sugar SQL functions."

View file

@ -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 (ns next.jdbc.test-fixtures
"Multi-database testing fixtures." "Multi-database testing fixtures."

View file

@ -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 (ns next.jdbc.transaction-test
"Stub test namespace for transaction handling." "Stub test namespace for transaction handling."

View file

@ -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 (ns next.jdbc-test
"Basic tests for the primary API of `next.jdbc`." "Basic tests for the primary API of `next.jdbc`."