Skip to content

Commit

Permalink
Prepare change log and opam files for v1.3.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
paurkedal committed Jan 17, 2021
1 parent 5f1216f commit 60bd029
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 6 deletions.
14 changes: 14 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -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 `$<var>$` 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.
Expand Down
2 changes: 1 addition & 1 deletion caqti-async.opam
Original file line number Diff line number Diff line change
Expand Up @@ -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~"}
Expand Down
2 changes: 1 addition & 1 deletion caqti-driver-mariadb.opam
Original file line number Diff line number Diff line change
Expand Up @@ -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"}
]
Expand Down
2 changes: 1 addition & 1 deletion caqti-driver-postgresql.opam
Original file line number Diff line number Diff line change
Expand Up @@ -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"}
]
Expand Down
2 changes: 1 addition & 1 deletion caqti-driver-sqlite3.opam
Original file line number Diff line number Diff line change
Expand Up @@ -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"
]
Expand Down
2 changes: 1 addition & 1 deletion caqti-dynload.opam
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion caqti-lwt.opam
Original file line number Diff line number Diff line change
Expand Up @@ -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"}
Expand Down

0 comments on commit 60bd029

Please sign in to comment.