File tree Expand file tree Collapse file tree 10 files changed +29
-21
lines changed Expand file tree Collapse file tree 10 files changed +29
-21
lines changed Original file line number Diff line number Diff line change 1
- ## 2.1 (unreleased)
1
+ ## 2.2 (unreleased)
2
+
3
+ ## 2.1 (2022-05-31)
2
4
### Breaking changes
3
5
6
+ * Missing SASL authentication impl provides an error instead of hanging (https://github.com/arenadotio/pgx/pull/122 ).
4
7
* pgx_lwt_mirage now requires conduit 2.3 instead of 2.2 (https://github.com/arenadotio/pgx/pull/117 ).
5
8
6
9
## 2.0 (2021-05-12)
Original file line number Diff line number Diff line change 1
- (lang dune 1 .11)
2
-
3
- (using fmt 1 .1)
1
+ (lang dune 3 .2)
4
2
5
3
(name pgx)
6
4
32
30
:dev
33
31
( >= 2 .0.0) ) )
34
32
( dune
35
- ( >= 1 .11 ) )
33
+ ( >= 3 .2 ) )
36
34
hex
37
35
ipaddr
38
36
( ocaml
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ bug-reports: "https://github.com/arenadotio/pgx/issues"
12
12
depends: [
13
13
"alcotest" {with-test & >= "1.0.0"}
14
14
"bisect_ppx" {dev & >= "2.0.0"}
15
- "dune" {>= "1.11 "}
15
+ "dune" {>= "3.2" & >= "3.2 "}
16
16
"hex"
17
17
"ipaddr"
18
18
"ocaml" {>= "4.08"}
@@ -25,7 +25,7 @@ depends: [
25
25
"uuidm"
26
26
]
27
27
build: [
28
- ["dune" "subst"] {pinned }
28
+ ["dune" "subst"] {dev }
29
29
[
30
30
"dune"
31
31
"build"
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ homepage: "https://github.com/arenadotio/pgx"
9
9
doc: "https://arenadotio.github.io/pgx"
10
10
bug-reports: "https://github.com/arenadotio/pgx/issues"
11
11
depends: [
12
- "dune" {>= "1.11 "}
12
+ "dune" {>= "3.2 "}
13
13
"alcotest-async" {with-test & >= "1.0.0"}
14
14
"async_kernel" {>= "v0.13.0"}
15
15
"async_unix" {>= "v0.13.0"}
@@ -19,9 +19,10 @@ depends: [
19
19
"ocaml" {>= "4.08"}
20
20
"pgx" {= version}
21
21
"pgx_value_core" {= version}
22
+ "odoc" {with-doc}
22
23
]
23
24
build: [
24
- ["dune" "subst"] {pinned }
25
+ ["dune" "subst"] {dev }
25
26
[
26
27
"dune"
27
28
"build"
Original file line number Diff line number Diff line change @@ -9,14 +9,15 @@ homepage: "https://github.com/arenadotio/pgx"
9
9
doc: "https://arenadotio.github.io/pgx"
10
10
bug-reports: "https://github.com/arenadotio/pgx/issues"
11
11
depends: [
12
- "dune" {>= "1.11 "}
12
+ "dune" {>= "3.2 "}
13
13
"lwt"
14
14
"logs"
15
15
"ocaml" {>= "4.08"}
16
16
"pgx" {= version}
17
+ "odoc" {with-doc}
17
18
]
18
19
build: [
19
- ["dune" "subst"] {pinned }
20
+ ["dune" "subst"] {dev }
20
21
[
21
22
"dune"
22
23
"build"
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ homepage: "https://github.com/arenadotio/pgx"
9
9
doc: "https://arenadotio.github.io/pgx"
10
10
bug-reports: "https://github.com/arenadotio/pgx/issues"
11
11
depends: [
12
- "dune" {>= "1.11 "}
12
+ "dune" {>= "3.2 "}
13
13
"lwt"
14
14
"ocaml" {>= "4.08"}
15
15
"logs"
@@ -22,9 +22,10 @@ depends: [
22
22
"tcpip" {>= "7.0.0"}
23
23
"pgx" {= version}
24
24
"pgx_lwt" {= version}
25
+ "odoc" {with-doc}
25
26
]
26
27
build: [
27
- ["dune" "subst"] {pinned }
28
+ ["dune" "subst"] {dev }
28
29
[
29
30
"dune"
30
31
"build"
Original file line number Diff line number Diff line change @@ -9,15 +9,16 @@ homepage: "https://github.com/arenadotio/pgx"
9
9
doc: "https://arenadotio.github.io/pgx"
10
10
bug-reports: "https://github.com/arenadotio/pgx/issues"
11
11
depends: [
12
- "dune" {>= "1.11 "}
12
+ "dune" {>= "3.2 "}
13
13
"alcotest-lwt" {with-test & >= "1.0.0"}
14
14
"base64" {with-test & >= "3.0.0"}
15
15
"ocaml" {>= "4.08"}
16
16
"pgx" {= version}
17
17
"pgx_lwt" {= version}
18
+ "odoc" {with-doc}
18
19
]
19
20
build: [
20
- ["dune" "subst"] {pinned }
21
+ ["dune" "subst"] {dev }
21
22
[
22
23
"dune"
23
24
"build"
Original file line number Diff line number Diff line change @@ -10,14 +10,15 @@ homepage: "https://github.com/arenadotio/pgx"
10
10
doc: "https://arenadotio.github.io/pgx"
11
11
bug-reports: "https://github.com/arenadotio/pgx/issues"
12
12
depends: [
13
- "dune" {>= "1.11 "}
13
+ "dune" {>= "3.2 "}
14
14
"alcotest" {with-test & >= "1.0.0"}
15
15
"base64" {with-test & >= "3.0.0"}
16
16
"ocaml" {>= "4.08"}
17
17
"pgx" {= version}
18
+ "odoc" {with-doc}
18
19
]
19
20
build: [
20
- ["dune" "subst"] {pinned }
21
+ ["dune" "subst"] {dev }
21
22
[
22
23
"dune"
23
24
"build"
Original file line number Diff line number Diff line change @@ -9,14 +9,15 @@ homepage: "https://github.com/arenadotio/pgx"
9
9
doc: "https://arenadotio.github.io/pgx"
10
10
bug-reports: "https://github.com/arenadotio/pgx/issues"
11
11
depends: [
12
- "dune" {>= "1.11 "}
12
+ "dune" {>= "3.2 "}
13
13
"alcotest" {with-test & >= "1.0.0"}
14
14
"core_kernel" {>= "v0.13.0"}
15
15
"ocaml" {>= "4.08"}
16
16
"pgx" {= version}
17
+ "odoc" {with-doc}
17
18
]
18
19
build: [
19
- ["dune" "subst"] {pinned }
20
+ ["dune" "subst"] {dev }
20
21
[
21
22
"dune"
22
23
"build"
Original file line number Diff line number Diff line change @@ -9,14 +9,15 @@ homepage: "https://github.com/arenadotio/pgx"
9
9
doc: "https://arenadotio.github.io/pgx"
10
10
bug-reports: "https://github.com/arenadotio/pgx/issues"
11
11
depends: [
12
- "dune" {>= "1.11 "}
12
+ "dune" {>= "3.2 "}
13
13
"alcotest" {with-test & >= "1.0.0"}
14
14
"ptime" {>= "0.8.3"}
15
15
"ocaml" {>= "4.08"}
16
16
"pgx" {= version}
17
+ "odoc" {with-doc}
17
18
]
18
19
build: [
19
- ["dune" "subst"] {pinned }
20
+ ["dune" "subst"] {dev }
20
21
[
21
22
"dune"
22
23
"build"
You can’t perform that action at this time.
0 commit comments