Skip to content

Commit 0391468

Browse files
author
Gary Trakhman
authored
Post release 2.1 (arenadotio#124)
* Add changelog * add release date * Bump dune to latest
1 parent de8a45d commit 0391468

10 files changed

+29
-21
lines changed

CHANGES.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
1-
## 2.1 (unreleased)
1+
## 2.2 (unreleased)
2+
3+
## 2.1 (2022-05-31)
24
### Breaking changes
35

6+
* Missing SASL authentication impl provides an error instead of hanging (https://github.com/arenadotio/pgx/pull/122).
47
* pgx_lwt_mirage now requires conduit 2.3 instead of 2.2 (https://github.com/arenadotio/pgx/pull/117).
58

69
## 2.0 (2021-05-12)

dune-project

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
(lang dune 1.11)
2-
3-
(using fmt 1.1)
1+
(lang dune 3.2)
42

53
(name pgx)
64

@@ -32,7 +30,7 @@
3230
:dev
3331
(>= 2.0.0)))
3432
(dune
35-
(>= 1.11))
33+
(>= 3.2))
3634
hex
3735
ipaddr
3836
(ocaml

pgx.opam

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ bug-reports: "https://github.com/arenadotio/pgx/issues"
1212
depends: [
1313
"alcotest" {with-test & >= "1.0.0"}
1414
"bisect_ppx" {dev & >= "2.0.0"}
15-
"dune" {>= "1.11"}
15+
"dune" {>= "3.2" & >= "3.2"}
1616
"hex"
1717
"ipaddr"
1818
"ocaml" {>= "4.08"}
@@ -25,7 +25,7 @@ depends: [
2525
"uuidm"
2626
]
2727
build: [
28-
["dune" "subst"] {pinned}
28+
["dune" "subst"] {dev}
2929
[
3030
"dune"
3131
"build"

pgx_async.opam

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ homepage: "https://github.com/arenadotio/pgx"
99
doc: "https://arenadotio.github.io/pgx"
1010
bug-reports: "https://github.com/arenadotio/pgx/issues"
1111
depends: [
12-
"dune" {>= "1.11"}
12+
"dune" {>= "3.2"}
1313
"alcotest-async" {with-test & >= "1.0.0"}
1414
"async_kernel" {>= "v0.13.0"}
1515
"async_unix" {>= "v0.13.0"}
@@ -19,9 +19,10 @@ depends: [
1919
"ocaml" {>= "4.08"}
2020
"pgx" {= version}
2121
"pgx_value_core" {= version}
22+
"odoc" {with-doc}
2223
]
2324
build: [
24-
["dune" "subst"] {pinned}
25+
["dune" "subst"] {dev}
2526
[
2627
"dune"
2728
"build"

pgx_lwt.opam

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,15 @@ homepage: "https://github.com/arenadotio/pgx"
99
doc: "https://arenadotio.github.io/pgx"
1010
bug-reports: "https://github.com/arenadotio/pgx/issues"
1111
depends: [
12-
"dune" {>= "1.11"}
12+
"dune" {>= "3.2"}
1313
"lwt"
1414
"logs"
1515
"ocaml" {>= "4.08"}
1616
"pgx" {= version}
17+
"odoc" {with-doc}
1718
]
1819
build: [
19-
["dune" "subst"] {pinned}
20+
["dune" "subst"] {dev}
2021
[
2122
"dune"
2223
"build"

pgx_lwt_mirage.opam

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ homepage: "https://github.com/arenadotio/pgx"
99
doc: "https://arenadotio.github.io/pgx"
1010
bug-reports: "https://github.com/arenadotio/pgx/issues"
1111
depends: [
12-
"dune" {>= "1.11"}
12+
"dune" {>= "3.2"}
1313
"lwt"
1414
"ocaml" {>= "4.08"}
1515
"logs"
@@ -22,9 +22,10 @@ depends: [
2222
"tcpip" {>= "7.0.0"}
2323
"pgx" {= version}
2424
"pgx_lwt" {= version}
25+
"odoc" {with-doc}
2526
]
2627
build: [
27-
["dune" "subst"] {pinned}
28+
["dune" "subst"] {dev}
2829
[
2930
"dune"
3031
"build"

pgx_lwt_unix.opam

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,16 @@ homepage: "https://github.com/arenadotio/pgx"
99
doc: "https://arenadotio.github.io/pgx"
1010
bug-reports: "https://github.com/arenadotio/pgx/issues"
1111
depends: [
12-
"dune" {>= "1.11"}
12+
"dune" {>= "3.2"}
1313
"alcotest-lwt" {with-test & >= "1.0.0"}
1414
"base64" {with-test & >= "3.0.0"}
1515
"ocaml" {>= "4.08"}
1616
"pgx" {= version}
1717
"pgx_lwt" {= version}
18+
"odoc" {with-doc}
1819
]
1920
build: [
20-
["dune" "subst"] {pinned}
21+
["dune" "subst"] {dev}
2122
[
2223
"dune"
2324
"build"

pgx_unix.opam

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,15 @@ homepage: "https://github.com/arenadotio/pgx"
1010
doc: "https://arenadotio.github.io/pgx"
1111
bug-reports: "https://github.com/arenadotio/pgx/issues"
1212
depends: [
13-
"dune" {>= "1.11"}
13+
"dune" {>= "3.2"}
1414
"alcotest" {with-test & >= "1.0.0"}
1515
"base64" {with-test & >= "3.0.0"}
1616
"ocaml" {>= "4.08"}
1717
"pgx" {= version}
18+
"odoc" {with-doc}
1819
]
1920
build: [
20-
["dune" "subst"] {pinned}
21+
["dune" "subst"] {dev}
2122
[
2223
"dune"
2324
"build"

pgx_value_core.opam

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,15 @@ homepage: "https://github.com/arenadotio/pgx"
99
doc: "https://arenadotio.github.io/pgx"
1010
bug-reports: "https://github.com/arenadotio/pgx/issues"
1111
depends: [
12-
"dune" {>= "1.11"}
12+
"dune" {>= "3.2"}
1313
"alcotest" {with-test & >= "1.0.0"}
1414
"core_kernel" {>= "v0.13.0"}
1515
"ocaml" {>= "4.08"}
1616
"pgx" {= version}
17+
"odoc" {with-doc}
1718
]
1819
build: [
19-
["dune" "subst"] {pinned}
20+
["dune" "subst"] {dev}
2021
[
2122
"dune"
2223
"build"

pgx_value_ptime.opam

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,15 @@ homepage: "https://github.com/arenadotio/pgx"
99
doc: "https://arenadotio.github.io/pgx"
1010
bug-reports: "https://github.com/arenadotio/pgx/issues"
1111
depends: [
12-
"dune" {>= "1.11"}
12+
"dune" {>= "3.2"}
1313
"alcotest" {with-test & >= "1.0.0"}
1414
"ptime" {>= "0.8.3"}
1515
"ocaml" {>= "4.08"}
1616
"pgx" {= version}
17+
"odoc" {with-doc}
1718
]
1819
build: [
19-
["dune" "subst"] {pinned}
20+
["dune" "subst"] {dev}
2021
[
2122
"dune"
2223
"build"

0 commit comments

Comments
 (0)