Skip to content

Commit

Permalink
Prepare release 1.9.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
paurkedal committed Sep 6, 2022
1 parent a04466f commit 55ab7a2
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 8 deletions.
10 changes: 8 additions & 2 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,26 @@
## unreleased
## v1.9.0 - 2022-09-06

New features:

- Allow unquoted semicolons in query strings in the new API. There are
corner cases whene it is needed, as reported in issue #87, and a parser
corner cases where it is needed, as reported in issue #87, and a parser
which rejects semicolons are still available for loading schema files
statement by statement.

- Add support for MySQL and MariaDB configuration files, as a solution to
issue #86.

- Add a limit to the number of times a database connection is reused when
pooling connections (#94). Thanks to Peter Mondlock for investigating
resource usage server side motivating this addition.

- Provide access to the raw SQLite3 connection handle for the purpose of
defining custom functions (#56).

Fixes:

- Add missing dune dependency on unix (GPR#85 by David Allsopp).

- Documentation fixes (GPR#82, GPR#83, GPR#84 by Reynir Björnsson,
GPR#88 by Jonathan Duarte, and GPR#92 by Jim Tittsler).

Expand Down
2 changes: 1 addition & 1 deletion caqti-async.opam
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ depends: [
"alcotest-async" {with-test & >= "1.5.0"}
"async_kernel" {>= "v0.11.0"}
"async_unix" {>= "v0.11.0"}
"caqti" {>= "1.8.0" & < "1.9.0~"}
"caqti" {>= "1.8.0" & < "1.10.0~"}
"caqti-dynload" {with-test & >= "1.0.0" & < "2.0.0~"}
"caqti-driver-sqlite3" {with-test & >= "1.0.0" & < "2.0.0~"}
"cmdliner" {with-test & >= "1.1.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 @@ -9,7 +9,7 @@ bug-reports: "https://github.com/paurkedal/ocaml-caqti/issues"
depends: [
"alcotest" {with-test & >= "1.5.0"}
"ocaml"
"caqti" {>= "1.8.0" & < "1.9.0~"}
"caqti" {>= "1.9.0" & < "1.10.0~"}
"cmdliner" {with-test & >= "1.1.0"}
"dune" {>= "2.0"}
"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 @@ -12,7 +12,7 @@ bug-reports: "https://github.com/paurkedal/ocaml-caqti/issues"
depends: [
"alcotest" {with-test & >= "1.5.0"}
"ocaml"
"caqti" {>= "1.8.0" & < "1.9.0~"}
"caqti" {>= "1.9.0" & < "1.10.0~"}
"cmdliner" {with-test & >= "1.1.0"}
"dune" {>= "2.0"}
"odoc" {with-doc}
Expand Down
2 changes: 1 addition & 1 deletion caqti-driver-sqlite3.opam
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ bug-reports: "https://github.com/paurkedal/ocaml-caqti/issues"
depends: [
"alcotest" {with-test & >= "1.5.0"}
"ocaml"
"caqti" {>= "1.8.0" & < "1.9.0~"}
"caqti" {>= "1.9.0" & < "1.10.0~"}
"cmdliner" {with-test & >= "1.1.0"}
"dune" {>= "2.0"}
"odoc" {with-doc}
Expand Down
2 changes: 1 addition & 1 deletion caqti-dynload.opam
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ homepage: "https://github.com/paurkedal/ocaml-caqti/"
doc: "https://paurkedal.github.io/ocaml-caqti/index.html"
bug-reports: "https://github.com/paurkedal/ocaml-caqti/issues"
depends: [
"caqti" {>= "1.3.0" & < "1.9.0~"}
"caqti" {>= "1.3.0" & < "1.10.0~"}
"caqti-driver-sqlite3" {with-test & >= "1.0.0" & < "2.0.0~"}
"cmdliner" {with-test & >= "1.1.0"}
"dune" {>= "2.0"}
Expand Down
2 changes: 1 addition & 1 deletion caqti-lwt.opam
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ bug-reports: "https://github.com/paurkedal/ocaml-caqti/issues"
depends: [
"alcotest" {with-test & >= "1.5.0"}
"alcotest-lwt" {with-test & >= "1.5.0"}
"caqti" {>= "1.8.0" & < "1.9.0~"}
"caqti" {>= "1.9.0" & < "1.10.0~"}
"caqti-dynload" {with-test & >= "1.0.0" & < "2.0.0~"}
"caqti-driver-sqlite3" {with-test & >= "1.0.0" & < "2.0.0~"}
"cmdliner" {with-test & >= "1.1.0"}
Expand Down

0 comments on commit 55ab7a2

Please sign in to comment.