Skip to content

Commit 0c66e90

Browse files
committed
Updated distribution files
1 parent 11ed9c9 commit 0c66e90

File tree

5 files changed

+19
-11
lines changed

5 files changed

+19
-11
lines changed

CHANGES.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2015-12-18: Fixed a GC-bug when unescaping with "unescape_bytea".
2+
3+
Thanks to Sebastien Mondet for the bug report and for testing
4+
the patch!
5+
16
2015-07-10: Fixed a GC-bug in PQconndefaults_stub.
27

38
Thanks to Roven Gabriel for the patch!

_oasis

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
OASISFormat: 0.4
22
Name: postgresql
3-
Version: 3.2.1
3+
Version: 3.2.2
44
Synopsis: postgresql-ocaml - bindings to the PostgreSQL library
55
Description: postgresql-ocaml offers library functions for accessing PostgreSQL databases
66
Authors: Alain Frisch <[email protected]>,

lib/META

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# OASIS_START
2-
# DO NOT EDIT (digest: 7db4a148737a712605771f2a044f51b1)
3-
version = "3.2.1"
2+
# DO NOT EDIT (digest: c37088413962ccee07fd0ec2f542e81f)
3+
version = "3.2.2"
44
description = "postgresql-ocaml - bindings to the PostgreSQL library"
55
requires = "threads bigarray bytes"
66
archive(byte) = "postgresql.cma"

myocamlbuild.ml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
(* OASIS_START *)
2-
(* DO NOT EDIT (digest: 2f6db32590a6b778a4f6a9b9c2878dd1) *)
2+
(* DO NOT EDIT (digest: 06eef5aa6ae6163b3da405de99e8b560) *)
33
module OASISGettext = struct
44
(* # 22 "src/oasis/OASISGettext.ml" *)
55

@@ -647,7 +647,9 @@ let package_default =
647647
A "-ccopt";
648648
A "-Wunused";
649649
A "-ccopt";
650-
A "-Wno-long-long"
650+
A "-Wno-long-long";
651+
A "-ccopt";
652+
A "-Wno-keyword-macro"
651653
])
652654
]);
653655
(["oasis_library_postgresql_cclib"; "link"],
@@ -663,7 +665,7 @@ let conf = {MyOCamlbuildFindlib.no_automatic_syntax = false}
663665

664666
let dispatch_default = MyOCamlbuildBase.dispatch_default conf package_default;;
665667

666-
# 667 "myocamlbuild.ml"
668+
# 669 "myocamlbuild.ml"
667669
(* OASIS_STOP *)
668670

669671
let () =

setup.ml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
(* setup.ml generated for the first time by OASIS v0.3.0 *)
22

33
(* OASIS_START *)
4-
(* DO NOT EDIT (digest: eb75aac13e1f16e5ed276d8466a58122) *)
4+
(* DO NOT EDIT (digest: 0bf232d331b360d6e42999e6777b162d) *)
55
(*
66
Regenerated by OASIS v0.4.5
77
Visit http://oasis.forge.ocamlcore.org for more information and
@@ -6683,7 +6683,7 @@ let setup_t =
66836683
alpha_features = [];
66846684
beta_features = [];
66856685
name = "postgresql";
6686-
version = "3.2.1";
6686+
version = "3.2.2";
66876687
license =
66886688
OASISLicense.DEP5License
66896689
(OASISLicense.DEP5Unit
@@ -6802,7 +6802,8 @@ let setup_t =
68026802
"-pedantic";
68036803
"-Wextra";
68046804
"-Wunused";
6805-
"-Wno-long-long"
6805+
"-Wno-long-long";
6806+
"-Wno-keyword-macro"
68066807
])
68076808
];
68086809
bs_cclib = [(OASISExpr.EBool true, ["-lpq"])];
@@ -7101,15 +7102,15 @@ let setup_t =
71017102
};
71027103
oasis_fn = Some "_oasis";
71037104
oasis_version = "0.4.5";
7104-
oasis_digest = Some "\1547+\019m\022\1298m|\155!¨5\143Á";
7105+
oasis_digest = Some "î\025\026\144\021\026c×Gô\"\027Öì";
71057106
oasis_exec = None;
71067107
oasis_setup_args = [];
71077108
setup_update = false
71087109
};;
71097110

71107111
let setup () = BaseSetup.setup setup_t;;
71117112

7112-
# 7113 "setup.ml"
7113+
# 7114 "setup.ml"
71137114
(* OASIS_STOP *)
71147115

71157116
let () =

0 commit comments

Comments
 (0)