forked from ocaml-batteries-team/batteries-included
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
415 lines (365 loc) · 13.2 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
Changelog
---------
## NEXT_RELEASE
- ocamlfind plugin support in META file
(Arlen Cox)
#867
- add `BatString.cut_on_char : char -> int -> string -> string`
(Kahina Fekir, Thibault Suzanne, request by François Bérenger)
#807, #856
- add `BatString.index_after_n : char -> int -> string -> int`
(Kahina Fekir)
- faster BatArray.partition
#829
(Francois Berenger, Gabriel Scherer)
- add `BatArray.split: ('a * 'b) array -> 'a array * 'b array`
#826
(Francois Berenger)
- add `BatString.count_string: string -> string -> int`
#799
(Francois Berenger)
- Int: optimized implementation of Safe_int.mul
#808, #851
(Max Mouratov)
- Fix: in case of conflicted bindings, [Map.union m1 m2] should
prefer the value from [m2], as stated in documentation.
#814
(Max Mouratov)
- Fix: [Map.update k1 k2 v m] did not work correctly when [k1 = k2].
#833
(Max Mouratov)
- Fix: [Map.update k1 k2 v m] should throw [Not_found] if [k1] is not bound
in [m], as stated in documentation.
#833
(Max Mouratov)
- Fix: [Set.update x y s] should throw [Not_found] if [x] is not in [s],
as stated in documentation.
#833
(Max Mouratov)
- Fix: documentation of BatList.{hd,last} to match implementation w.r.t
raised exceptions
#840, #754
(FkHina)
- Fix: [Array.insert] should throw a more relevant message on invalid indices
instead of the generic [invalid_arg "index out of bounds].
The assertion is now documented.
#841
(Max Mouratov)
- Implementation of [Array.insert] now uses [unsafe_get] and [unsafe_set].
#841
(Max Mouratov)
- Fix documentation of [String.right].
#849, #844
(Max Mouratov, reported by Thibault Suzanne)
- Fix: [Heap.del_min] should throw [Invalid_argument] with the specified
"del_min" message instead of "find_min_tree".
#850
(Max Mouratov)
- More uniform and correct [Invalid_argument] messages.
#850
(Max Mouratov)
- Optimization of List.unique_cmp (using Set instead of Map).
#852
(Max Mouratov)
- Documentation of List.append and List.concat should not include invalid
estimates of stack usage.
#854
(Max Mouratov)
- Implementation of String should use unsafe versions of [set] and [get].
#836
(Max Mouratov, review by Gabriel Scherer)
- Fix erroneous mentions of [Different_list_size] in List.mli.
#857, #744
(Max Mouratov, reported by Christoph Höger)
- fix Map.equal (for polymorphic maps) with custom equality function
#865
(Ralf Vogler)
## v2.8.0 (minor release)
This minor release supports the -safe-string mode for OCaml
compilation, enforcing a type-level separation between (immutable)
strings and mutable byte sequences.
- support -safe-string compilation
#673
(Gabriel Scherer)
- Support for the upcoming OCaml release 4.06
(Gabriel Scherer)
## v2.7.0 (minor release)
This minor release is the first to support OCaml 4.05.0. As with
previous OCaml versions, we backported new 4.05.0 convenience function
from the compiler stdlib, allowing Batteries user to use them with
older OCaml versions, and thus write backward-compatible code. In
particular, the new *_opt functions returning option values instead of
exceptions are all backported.
- BatNum: fix of_float_string to handle negative numbers properly
#780
(Anton Yabchinskiy)
- added BatArray.min_max
#757
(Francois Berenger)
- added a Label module to BatVect
#763
(Varun Gandhi, review by Francois Berenger, Gabriel Scherer, Thibault Suzanne)
- fix documentation of BatVect.insert to match (correct) implementation
#766, #767
(Gabriel Scherer, report by Varun Gandhi)
- avoid using exceptions for internal control-flow
#768, #769
This purely internal change should improve performances when using
js_of_ocaml, which generates much slower code for local exceptions
raising/catching than the native OCaml backend.
Internal exceptions (trough the BatReturn label) have been removed
from the modules BatString, BatSubstring and BatVect.
(Gabriel Scherer, request and review by Clément Pit-Claudel)
- added `BatVect.find_opt : ('a -> bool) -> 'a t -> 'a option`
and BatVect.Make.find_opt
#769
(Gabriel Scherer)
- Documents exceptions for List.(min, max)
#770
(Varun Gandhi)
- BatText: bugfixes in `rindex{,_from}` and `rcontains_from`
#775
(Gabriel Scherer)
- Support for the new OCaml release 4.05
the `*_opt` functions and List.compare_lengths, compare_length_with
are also backported to older OCaml releases, so code using them from
Batteries should be backwards-compatible
#777, #779
(Tej Chajed, Gabriel Scherer)
## v2.6.0 (minor release)
- added Bat{Set,Map,Splay}.any and fixed Bat{Map,Splay}.choose
#751
(Cedric Cellier)
- added BatList.favg and faster BatList.fsum
#746
(Gabriel Scherer, Francois Berenger)
- install .cmt and .cmti files
#740
(Francois Berenger, Gabriel Scherer)
- BatMap: added find_default
#730
(Francois Berenger)
- added scripts/test_install.sh
#743
(Francois Berenger)
- BatHashtbl: added {to|of}_list, bindings
#728
(Francois Berenger, Thibault Suzanne)
- added {BatList|BatArray}.shuffle
#702, #707
(Francois Berenger, Gabriel Scherer)
- Clarification and improvements to the documentation
#682, #685, #693
(Florian Angeletti, Johannes Kloos, Michael Färber)
- make `LazyList.split_at` lazy:
`split_at : int -> 'a t -> 'a t * 'a t`
would previously eagerly force the prefix of the list
and only be lazy in its second returned value.
#694
(Michael Färber, Gabriel Scherer, Thibault Suzanne)
- Add `List.{map2i,iter2i}`
#696
(Thibault Suzanne)
- Added `Result.{map,map_both}`
#705
(Ifaz Kabir)
- Add {BatSet,BatMap}.{Int,Int32,Int64,Nativeint,Float,Char,String} as
common instantions of the respective `Make` functor.
#709, #712
(Thibault Suzanne, François Bérenger)
- BatString: add `chop : ?l:int -> ?r:int -> string -> string`
#714, #716
(Gabriel Scherer, request by François Bérenger)
- BatSet: make `to_array` allocate the resulting array at first
instead of using Dynarray (faster, uses less memory).
#724
(Thibault Suzanne)
- BatList: add `fold_left_map : ('a -> 'b -> 'a * 'c) -> 'a -> 'b list -> 'a * 'c list`
#734
(Thibault Suzanne, review by Gabriel Scherer, request by Oscar Gauthier)
- add ``BatList.frange : float -> [< `To | `Downto ] -> float -> int -> float list``
``frange 0. `To 1. 3`` is `[0.; 0.5; 1.]`.
#745
(François Bérenger)
## v2.5.3
Batteries 2.5.3 synchronizes library functions with OCaml 4.04+beta2,
and will hopefully be an extension of the upcoming OCaml 4.04 release.
- Compatibility with OCaml 4.04.
5e63a9a756f
(Gabriel Scherer)
## v2.5.1, v2.5.2
Batteries 2.5.1 and 2.5.2 fix a silly packaging bug in Batteries 2.5.0.
## v2.5.0
Batteries 2.5.0 is a minor release whose main change is that it is
compatible with the newly released OCaml 4.03.
Note that Batteries 2.5.0 is compatible with older OCaml releases as
well, and provides back-ported versions of most standard library
functions made available in 4.03 only. For example,
BatString.uppercase_ascii is usable under all OCaml versions.
If the documentation of a Batteries function says
@since 2.5.0
then it is available under all supported OCaml version (3.12.1 and up).
If it says
@since 2.5.0 and OCaml 4.03.0
then it is only available under OCaml 4.03.0.
- BatTuple: add Tuple{N}.make : 'a1 -> ... -> 'an -> 'a1 * ... * 'an
#657
(Thibault Suzanne)
- BatBig_int: fix sequence operators (--), (---) to avoid polymorphic comparison
#674, #675, #676
(Pieter Goetschalckx and Cedric Cellier)
- Extend all Batteries module to cover OCaml 4.03 features
#670
(Gabriel Scherer, KC Sivaramakrishnan)
## v2.4.0
- BatBitSet: use Bytes instead of String
(Gabriel Scherer)
- BatHashtbl: fix hash computation bug introduced by 4.01 (issue #609)
(Gabriel Scherer, report by Martin Neuhäußer)
- BatText: synchronize nsplit to match BatString.nsplit
(Gabriel Scherer)
- BatLazyList: fix remove_all_such documentation
(Xavier Van de Woestyne)
- BatMap: add pop_min_binding: 'a t -> (key * 'a) * 'a t
and pop_max_binding: 'a t -> (key * 'a) * 'a t
(Francois Berenger)
- BatMap: add at_rank_exn: int -> ('key, 'a) t -> ('key * 'a)
and update: key -> key -> 'a -> 'a t -> 'a t
(Francois Berenger)
- BatEnum: add interleave: 'a t array -> 'a t
(Aleksey Z. Arens)
- BatFormat: expose asprintf for V>=4.01
(Ralf Vogler)
- BatSet: add at_rank_exn: int -> t -> elt
and update: elt -> elt -> t -> t
(Francois Berenger)
- BatUTF8: add enum: t -> BatUChar.t BatEnum.t
(Kevin Brubeck Unhammer)
- BatSet: add to_array: t -> elt array
and of_array: elt array -> t
and test for to_list
(Francois Berenger)
- BatSet: add pop_max: 'a t -> 'a * 'a t
and pop_min: 'a t -> 'a * 'a t
(Francois Berenger)
- BatSplay: hardened against read-only-data compiler optimization
(Gabriel Scherer)
- BatList: simplified interleave implementation
(Francois Berenger)
- BatOption: add Infix.(>>=): 'a option -> ('a -> 'b option) -> 'b option
(Herry Herry)
- BatHashtbl: modify now have same semantics than replace for the key
(Anders Fugmann)
- BatHashtbl: more efficient modify_opt and modify_def
(Anders Fugmann)
- BatFormat: add pp_print_list: ?pp_sep:(formatter -> unit -> unit) ->
(formatter -> 'a -> unit) ->
(formatter -> 'a list -> unit)
and pp_print_text: formatter -> string -> unit
(Christoph Höger)
- BatEnum: add uniq_by: ('a -> 'a -> bool) -> 'a t -> 'a t
and uniqq: 'a t -> 'a t
(Max Mouratov)
- BatEnum: fix uniq to use structural comparison
(Max Mouratov)
- BatUnix: add run_and_read: string -> process_status * string
(Francois Berenger)
- BatCache: use hashmap to speed up lru_cache
(Sang Kil Cha)
- BatQueue: add filter: ('a -> bool) -> 'a t -> 'a t
and filter_inplace: ('a -> bool) -> 'a t -> unit
and filter_map: ('a -> 'b option) -> 'a t -> 'b t
(Gabriel Scherer)
## v2.3.0
- improved test coverage
(Simon Cruanes and Xavier Van de Woestyne)
- Enum: bugfix in clamp
(Simon Cruanes)
- Stream: add concat_map
(Gabriel Radanne)
- List: fix a stack-overflow bug in transpose
(Gabriel Scherer)
- List: add unfold_exc : (unit -> a) -> 'a list * exn
(François Berenger)
- List: add fold_righti and fold_lefti
(François Berenger)
- Substring : fix fold_left, add fold_lefti, fold_righti
(Xavier Van de Woestyne)
- String : add fold_lefti and fold_righti
(Xavier Van de Woestyne)
- Set.Make: add of_list
(Jacques-Pascal Deplaix)
- AvlTree: add (check : 'a tree -> bool) to check well-formedness
(Simon Cruanes)
- Hashtbl: make modify_opt/def resize the table to preserve amortized costs
(Mads Hartmann, report by user 'jj-issuu')
- Enum: fix combine's count in presence of infinite enums
(Gabriel Scherer, report by user 'mwnx')
- Makefile: add a qtest-byte target
(Gabriel Scherer)
- List: add modify_opt_at: int -> ('a -> 'a option) -> 'a list -> 'a list
(Gabriel Scherer)
- List: add modify_at: int -> ('a -> 'a) -> 'a list -> 'a list
(Gabriel Scherer)
- List: add remove_at: int -> 'a list -> 'a list
(François Berenger)
- Int: add copysign
(Simon Cruanes)
- Deque: add rotate_forward, rotate_backward : 'a dq -> 'a dq
(Max Mouratov)
- Int: fix overflow checking in Safe_int.mul
(Max Mouratov, Christopher Zimmermann)
- add a local OPAM description, allows to use
opam pin add batteries git@github.com:ocaml-batteries-team/batteries-included.git
(Vincent Bernardoff)
- Queue: add map : ('a -> 'b) -> 'a t -> 'b t
(Christopher Zimmermann)
- compatibility with 4.02:
+ Printf: remove CamlinternalPr for OCaml versions >= 4.02
(Ralf Vogler)
+ Printf: legacy code assumed (string = fmt)
(Gabriel Scherer)
+ new 4.02 functions:
String.mapi (String.init was already in Batteries)
List.sort_uniq (List.sort_unique existed before)
Array.make_float (less efficient implementation provided for <4.02 versions)
a BatBytes module relying on ocamlfind's compatibility module
bytes-related functions in Buffer,Digest,Marshal,Printexc,Stream,Unix
new Printexc callstack interface (not available for <4.02 versions)
(Gabriel Scherer)
## v2.2.0
- cartesian product in batSet
- Enum.concat_map alias
- UChar.is_ascii
- equality and enumeration (from, to UChar enum) in batText
- String.find_all function
- Seq.iteri, mapi, iter2, map2 (see issue #417)
- cartesian product of enums (issue #442)
- List.subset
- Array.bsearch dichotomic search (issue #433)
- Enum.print_at_most (issue #425)
- BatOption.ord instance, (issue #393)
- Fix infinite loop in BitSet
- Levenshtein distance on strings
- Seq.{of_list, equal}
- basic .merlin file for merlin users
- BatDeque.eq function to compare Deques by content
- BatteriesExceptionless
- More explicit overridding of ocamlbuild rules, use batteries.mllib
- Add Kahan summation (numerically-accurate sum of floats) to List,Array,Enum
- Add BatOption.some
- (text) improve element indexing in BatList's mli documentation
- Add BatList.filteri_map
- Compatibility with ocaml 4.01
- Add BatList.filteri
- Add Set.split_lt and split_le
- Add split_opt wherever there is split
- Add List.range
- Add the new O_CLOEXEC flag to Unix.open_flag in version 4.01
- Fix BatMutex.DebugMutex.id is always 0.
- Simplify List.partition code
- Add List.ntake and List.takedrop
- Added List.Acc.create and use it
- Add a LazyList.eager_fold_right alias to LazyList.fold_right, with sane argument order
- and many tests and documentation
- cleanup of whitespace