diff --git a/CHANGES.md b/CHANGES.md index d6d8c819..c4751063 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,17 @@ +## v1.3.0 - 2021-01-17 + +- Implement `affected_count` for sqlite backend (GPR#46 jakob). +- Add method `exec_with_affected_count` to `Caqti_connection_sig.S` (GPR#45 + jakob). +- Add `?max_idle_size` to pool creation functions. +- Dropped dependency on `ppx_deriving` due to issue with static compilation + (GPR#50 Ulrik Strid). +- Pass through `$$` in query strings and deprecate `$$`. +- Log statements to be executed at debug level. +- Add COPYING.OCAML and fix license expression in opam files. +- Misc improvements to tests and documentation (GPR#51 Philippe Wang, GPR#54 + Reynir Björnsson, etc.). + ## v1.2.4 - 2020-06-07 - Switch to TEXT format for PostgreSQL populate implementation. diff --git a/caqti-async.opam b/caqti-async.opam index 7316bde3..717c4844 100644 --- a/caqti-async.opam +++ b/caqti-async.opam @@ -10,7 +10,7 @@ depends: [ "ocaml" "async_kernel" {>= "v0.11.0" & < "v0.14.0~"} "async_unix" {>= "v0.11.0" & < "v0.14.0~"} - "caqti" {>= "1.2.0" & < "1.3.0~"} + "caqti" {>= "1.3.0" & < "1.4.0~"} "caqti-dynload" {with-test & >= "1.0.0" & < "2.0.0~"} "caqti-driver-sqlite3" {with-test & >= "1.0.0" & < "2.0.0~"} "core_kernel" {< "v0.14.0~"} diff --git a/caqti-driver-mariadb.opam b/caqti-driver-mariadb.opam index cb2b0047..ebb26b4b 100644 --- a/caqti-driver-mariadb.opam +++ b/caqti-driver-mariadb.opam @@ -8,7 +8,7 @@ doc: "https://paurkedal.github.io/ocaml-caqti/index.html" bug-reports: "https://github.com/paurkedal/ocaml-caqti/issues" depends: [ "ocaml" - "caqti" {>= "1.2.1" & < "1.3.0~"} + "caqti" {>= "1.3.0" & < "1.4.0~"} "dune" {>= "1.11"} "mariadb" {>= "1.1.1"} ] diff --git a/caqti-driver-postgresql.opam b/caqti-driver-postgresql.opam index 3b2e3316..21a5b54e 100644 --- a/caqti-driver-postgresql.opam +++ b/caqti-driver-postgresql.opam @@ -11,7 +11,7 @@ doc: "https://paurkedal.github.io/ocaml-caqti/index.html" bug-reports: "https://github.com/paurkedal/ocaml-caqti/issues" depends: [ "ocaml" - "caqti" {>= "1.2.1" & < "1.3.0~"} + "caqti" {>= "1.3.0" & < "1.4.0~"} "dune" {>= "1.11"} "postgresql" {>= "4.6.0"} ] diff --git a/caqti-driver-sqlite3.opam b/caqti-driver-sqlite3.opam index 9abfce4a..2401f9ae 100644 --- a/caqti-driver-sqlite3.opam +++ b/caqti-driver-sqlite3.opam @@ -8,7 +8,7 @@ doc: "https://paurkedal.github.io/ocaml-caqti/index.html" bug-reports: "https://github.com/paurkedal/ocaml-caqti/issues" depends: [ "ocaml" - "caqti" {>= "1.2.1" & < "1.3.0~"} + "caqti" {>= "1.3.0" & < "1.4.0~"} "dune" {>= "1.11"} "sqlite3" ] diff --git a/caqti-dynload.opam b/caqti-dynload.opam index a3420fc7..d33040b2 100644 --- a/caqti-dynload.opam +++ b/caqti-dynload.opam @@ -8,7 +8,7 @@ doc: "https://paurkedal.github.io/ocaml-caqti/index.html" bug-reports: "https://github.com/paurkedal/ocaml-caqti/issues" depends: [ "ocaml" {>= "4.04.0"} - "caqti" {>= "1.2.0" & < "1.3.0~"} + "caqti" {>= "1.3.0" & < "1.4.0~"} "caqti-driver-sqlite3" {with-test & >= "1.0.0" & < "2.0.0~"} "dune" {>= "1.11"} "ocamlfind" diff --git a/caqti-lwt.opam b/caqti-lwt.opam index 5cdf7220..e967633e 100644 --- a/caqti-lwt.opam +++ b/caqti-lwt.opam @@ -8,7 +8,7 @@ doc: "https://paurkedal.github.io/ocaml-caqti/index.html" bug-reports: "https://github.com/paurkedal/ocaml-caqti/issues" depends: [ "ocaml" - "caqti" {>= "1.2.0" & < "1.3.0~"} + "caqti" {>= "1.3.0" & < "1.4.0~"} "caqti-dynload" {with-test & >= "1.0.0" & < "2.0.0~"} "caqti-driver-sqlite3" {with-test & >= "1.0.0" & < "2.0.0~"} "dune" {>= "1.11"}