File: CHANGES.md

package info (click to toggle)
ocaml-crunch 4.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 284 kB
  • sloc: ml: 435; makefile: 10
file content (116 lines) | stat: -rw-r--r-- 3,163 bytes parent folder | download
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
## v4.0.0 (2025-02-17)

* Update to mirage-kv-mem 4.0.0 API changes (fewer functors) (#68 @hannesm)

## v3.3.1 (2022-08-05)

* Fixed a regression in v3.3.0 where periods ('.') had to be specified
  in the extention list. (#62, @MisterDA, fixes #61 reported by @cemerick)

## v3.3.0 (2022-07-24)

* Open files in binary mode so buffers don't underread on Windows.
  (#54, @jonahbeckford)
* Always use Unix-style paths for path keys (#58, @MisterDA)
* Add -s and --silent flags (#52, #60, @MisterDA)
* Add `hash` and `size` functions to the plain module (#53, #60, @MisterDA)
* Update to cmdliner 1.1 (#55, @MisterDA)

## v3.2.0 (2019-12-14)

* Make crunch reproducible: use a Map.Make(String) instead of Hashtbl.
  Iterating over the former is guaranteed to be sorted over the keys.
  (#51 @hannesm)
* The state (Map.t) is passed explicit to `scan_file`, `output_implementation`
  and `walk_directory_tree`. The value `empty` is provided to construct an
  empty `t`. (#51 @hannesm)

## v3.1.0 (2019-11-01)

* Adapt mirage-kv 3.0.0 interface (#50 @hannesm)

## v3.0.0 (2019-02-28)

* Implement the mirage-kv 2.0.0 interface, using mirage-kv-mem
  (#47 @linse @hannesm)
* Removed no longer used size function (#47 @linse @hannesm)

## v2.2.0 (2019-02-05)

* Port to dune from jbuilder (#46 @hannesm)
* use `SOURCE_DATE_EPOCH` instead of gettimeofday if set to
  support reproducible builds (#45 @xclerc)

## v2.1.0 (2017-06-24)

* Port to Jbuilder and simplify test dependencies (#38 by @rgrinberg)

## v2.0.0 (2016-02-24)

* Fix reading of files consisting of multiple pages (#30 by @hannesm)
* Port to MirageOS3 API: removed unused `id` type (#17), add Failure
  error type (#20), `connect` does not return a result anymore.
* Generate a `mem` function for the filesystem (#18)
* Port to topkg and respect the odig packaging convention (#24 via @fgimenez)
* Add `LICENSE` file to repository (#19 via @djs55)

## v1.4.1 (2016-02-08)

* Use a poor-man `realpath` instead of relying on C bindings which are not
  available under Cygwin

## v1.4.0 (2015-03-09)

* Add an explicit `connect` function to the signature of generated code. (#13)
* Use centralised Travis CI scripts.

## v1.3.0 (2014-03-08)

* Deduplicate file chunks so that only one copy of each
  sector is allocated in the static module.

## v1.2.3 (2013-12-24)

* Fix compilation of 0-length files.

## v1.2.2 (2013-12-08)

* Use the `V1.KV_RO` signature from mirage-types>=0.5.0
* Add Travis CI scripts.

## v1.2.1 (2013-12-08)

* Generate the correct signature for `V1.KV_RO`.

## v1.2.0 (2013-12-08)

* Use the `V1.KV_RO` signature from mirage-types>=0.3.0

## v1.1.2 (2013-12-07)

* Do not skip files without an extension.

## v1.1.1 (2013-12-06)

* Bugfix release.

## v1.1.0 (2013-12-05)

* New release to adapt to the new mirage-types API

## v0.7.0 (2013-07-21)

* Add a `-nolwt` output mode which simply uses strings and has
  no dependence on Lwt.  For the modern user who demands ultra-convenience.

## v0.6.0 (2013-07-09)

* Adapt output to mirage-platform-0.9.2 Io_page API.

## v0.5.0 (2013-03-28)

* Added a -o option (needed for mirari)

## 0.4.0 (2012-12-20)

* Initial public release