add date of last release; update copyright years
Signed-off-by: Sean Corfield <sean@corfield.org>
This commit is contained in:
parent
218cf82637
commit
03117d1160
30 changed files with 30 additions and 30 deletions
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
Only accretive/fixative changes will be made from now on.
|
Only accretive/fixative changes will be made from now on.
|
||||||
|
|
||||||
* 1.3.955 in progress
|
* 1.3.955 -- 2024-10-06
|
||||||
* Address [#285](https://github.com/seancorfield/next-jdbc/issues/285) by setting the default Clojure version to the earliest supported (1.10.3) to give a better hint to users.
|
* Address [#285](https://github.com/seancorfield/next-jdbc/issues/285) by setting the default Clojure version to the earliest supported (1.10.3) to give a better hint to users.
|
||||||
* Update PostgreSQL **Tips & Tricks** example code to fix possible NPE. PR [#284](https://github.com/seancorfield/next-jdbc/pull/284) from [@ExNexu](https://github.com/ExNexu).
|
* Update PostgreSQL **Tips & Tricks** example code to fix possible NPE. PR [#284](https://github.com/seancorfield/next-jdbc/pull/284) from [@ExNexu](https://github.com/ExNexu).
|
||||||
* Address [#283](https://github.com/seancorfield/next-jdbc/issues/283) by adding a note in the documentation, linking to the PostgreSQL bug report about `ANY(array)`.
|
* Address [#283](https://github.com/seancorfield/next-jdbc/issues/283) by adding a note in the documentation, linking to the PostgreSQL bug report about `ANY(array)`.
|
||||||
|
|
|
||||||
|
|
@ -88,6 +88,6 @@ In addition, convenience functions -- "syntactic sugar" -- are provided to inser
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
Copyright © 2018-2021 Sean Corfield
|
Copyright © 2018-2024 Sean Corfield
|
||||||
|
|
||||||
Distributed under the Eclipse Public License version 1.0.
|
Distributed under the Eclipse Public License version 1.0.
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
;; copyright (c) 2018-2023 Sean Corfield, all rights reserved
|
;; copyright (c) 2018-2024 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.
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
;; copyright (c) 2020-2021 Sean Corfield, all rights reserved
|
;; copyright (c) 2020-2024 Sean Corfield, all rights reserved
|
||||||
|
|
||||||
(ns next.jdbc.datafy
|
(ns next.jdbc.datafy
|
||||||
"This namespace provides datafication of several JDBC object types,
|
"This namespace provides datafication of several JDBC object types,
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
;; copyright (c) 2019-2021 Sean Corfield, all rights reserved
|
;; copyright (c) 2019-2024 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`
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
;; copyright (c) 2020-2021 Sean Corfield, all rights reserved
|
;; copyright (c) 2020-2024 Sean Corfield, all rights reserved
|
||||||
|
|
||||||
(ns ^:no-doc next.jdbc.default-options
|
(ns ^:no-doc next.jdbc.default-options
|
||||||
"Implementation of default options logic."
|
"Implementation of default options logic."
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
;; copyright (c) 2020-2021 Sean Corfield, all rights reserved
|
;; copyright (c) 2020-2024 Sean Corfield, all rights reserved
|
||||||
|
|
||||||
(ns next.jdbc.plan
|
(ns next.jdbc.plan
|
||||||
"Some helper functions that make common operations with `next.jdbc/plan`
|
"Some helper functions that make common operations with `next.jdbc/plan`
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
;; copyright (c) 2018-2021 Sean Corfield, all rights reserved
|
;; copyright (c) 2018-2024 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
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
;; copyright (c) 2018-2021 Sean Corfield, all rights reserved
|
;; copyright (c) 2018-2024 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.
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
;; copyright (c) 2019-2023 Sean Corfield, all rights reserved
|
;; copyright (c) 2019-2024 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
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
;; copyright (c) 2019-2023 Sean Corfield, all rights reserved
|
;; copyright (c) 2019-2024 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.
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
;; copyright (c) 2021-2023 Sean Corfield, all rights reserved
|
;; copyright (c) 2021-2024 Sean Corfield, all rights reserved
|
||||||
|
|
||||||
(ns ^:no-doc next.jdbc.sql-logging
|
(ns ^:no-doc next.jdbc.sql-logging
|
||||||
"Implementation of sql-logging logic."
|
"Implementation of sql-logging logic."
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
;; copyright (c) 2018-2021 Sean Corfield, all rights reserved
|
;; copyright (c) 2018-2024 Sean Corfield, all rights reserved
|
||||||
|
|
||||||
(ns next.jdbc.transaction
|
(ns next.jdbc.transaction
|
||||||
"Implementation of SQL transaction logic.
|
"Implementation of SQL transaction logic.
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
;; copyright (c) 2019-2021 Sean Corfield, all rights reserved
|
;; copyright (c) 2019-2024 Sean Corfield, all rights reserved
|
||||||
|
|
||||||
(ns next.jdbc.connection-string-test
|
(ns next.jdbc.connection-string-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
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
;; copyright (c) 2019-2021 Sean Corfield, all rights reserved
|
;; copyright (c) 2019-2024 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
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
;; copyright (c) 2020-2021 Sean Corfield, all rights reserved
|
;; copyright (c) 2020-2024 Sean Corfield, all rights reserved
|
||||||
|
|
||||||
(ns next.jdbc.datafy-test
|
(ns next.jdbc.datafy-test
|
||||||
"Tests for the datafy extensions over JDBC types."
|
"Tests for the datafy extensions over JDBC types."
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
;; copyright (c) 2019-2021 Sean Corfield, all rights reserved
|
;; copyright (c) 2019-2024 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.
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
;; copyright (c) 2020-2021 Sean Corfield, all rights reserved
|
;; copyright (c) 2020-2024 Sean Corfield, all rights reserved
|
||||||
|
|
||||||
(ns next.jdbc.default-options-test
|
(ns next.jdbc.default-options-test
|
||||||
"Stub test namespace for default options. Nothing can really be tested
|
"Stub test namespace for default options. Nothing can really be tested
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
;; copyright (c) 2019-2021 Sean Corfield, all rights reserved
|
;; copyright (c) 2019-2024 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."
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
;; copyright (c) 2020-2021 Sean Corfield, all rights reserved
|
;; copyright (c) 2020-2024 Sean Corfield, all rights reserved
|
||||||
|
|
||||||
(ns next.jdbc.plan-test
|
(ns next.jdbc.plan-test
|
||||||
"Tests for the plan helpers."
|
"Tests for the plan helpers."
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
;; copyright (c) 2019-2021 Sean Corfield, all rights reserved
|
;; copyright (c) 2019-2024 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.
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
;; copyright (c) 2019-2021 Sean Corfield, all rights reserved
|
;; copyright (c) 2019-2024 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
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
;; copyright (c) 2019-2021 Sean Corfield, all rights reserved
|
;; copyright (c) 2019-2024 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
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
;; copyright (c) 2019-2021 Sean Corfield, all rights reserved
|
;; copyright (c) 2019-2024 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.
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
;; copyright (c) 2019-2021 Sean Corfield, all rights reserved
|
;; copyright (c) 2019-2024 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.
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
;; copyright (c) 2019-2021 Sean Corfield, all rights reserved
|
;; copyright (c) 2019-2024 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."
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
;; copyright (c) 2019-2021 Sean Corfield, all rights reserved
|
;; copyright (c) 2019-2024 Sean Corfield, all rights reserved
|
||||||
|
|
||||||
(ns next.jdbc.test-fixtures
|
(ns next.jdbc.test-fixtures
|
||||||
"Multi-database testing fixtures."
|
"Multi-database testing fixtures."
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
;; copyright (c) 2019-2021 Sean Corfield, all rights reserved
|
;; copyright (c) 2019-2024 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."
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
;; copyright (c) 2020-2021 Sean Corfield, all rights reserved
|
;; copyright (c) 2020-2024 Sean Corfield, all rights reserved
|
||||||
|
|
||||||
(ns next.jdbc.types-test
|
(ns next.jdbc.types-test
|
||||||
"Some tests for the type-assist functions."
|
"Some tests for the type-assist functions."
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
;; copyright (c) 2019-2021 Sean Corfield, all rights reserved
|
;; copyright (c) 2019-2024 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`."
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue