File tree Expand file tree Collapse file tree 3 files changed +12
-9
lines changed Expand file tree Collapse file tree 3 files changed +12
-9
lines changed Original file line number Diff line number Diff line change 1
- version = 0.26.2
1
+ version = 0.27.0
2
2
profile = conventional
3
3
4
4
# Default overrides
Original file line number Diff line number Diff line change @@ -63,7 +63,8 @@ val sqlite_version : unit -> int
63
63
val sqlite_version_info : unit -> string
64
64
(* * [sqlite_version_info ()]
65
65
@return
66
- the version of the SQLite3 library being used in a human-readable string. *)
66
+ the version of the SQLite3 library being used in a human-readable string.
67
+ *)
67
68
68
69
(* * {2 Types} *)
69
70
@@ -235,7 +236,8 @@ module Data : sig
235
236
236
237
val to_string : t -> string option
237
238
(* * [to_string data] converts [data] to [Some string] or [None] if it is not a
238
- valid conversion. This method also converts data of type BLOB to a string. *)
239
+ valid conversion. This method also converts data of type BLOB to a string.
240
+ *)
239
241
240
242
val to_int : t -> int option
241
243
(* * [to_int data] converts [data] to [Some int] or [None] if it is not a valid
@@ -330,7 +332,8 @@ val ( let& ) : db -> (db -> 'a) -> 'a
330
332
database [db] is safely closed at the end of the scope, even if there is an
331
333
exception somewhere in the scope.
332
334
333
- @raise Fun.Finally_raised if the database could not be closed successfully. *)
335
+ @raise Fun.Finally_raised if the database could not be closed successfully.
336
+ *)
334
337
335
338
val enable_load_extension : db -> bool -> bool
336
339
(* * [enable_load_extension db onoff] enable/disable the SQLite3 load extension.
Original file line number Diff line number Diff line change @@ -10,11 +10,11 @@ let column_decltype s i =
10
10
let stepbystep s =
11
11
assert_done
12
12
(iter s ~f: (function r ->
13
- Array. iteri
14
- (fun i c ->
15
- printf " %s column[%d] %s = %s\n %!" (column_decltype s i) i
16
- (column_name s i) (Data. to_string_coerce c))
17
- r))
13
+ Array. iteri
14
+ (fun i c ->
15
+ printf " %s column[%d] %s = %s\n %!" (column_decltype s i) i
16
+ (column_name s i) (Data. to_string_coerce c))
17
+ r))
18
18
19
19
let stepbystep_wrong s =
20
20
while step s = Rc. ROW do
You can’t perform that action at this time.
0 commit comments