File tree Expand file tree Collapse file tree 4 files changed +9
-5
lines changed
Filter options
Expand file tree Collapse file tree 4 files changed +9
-5
lines changed
Original file line number Diff line number Diff line change 2
2
3
3
## ?.?.?.? -- ????-??-??
4
4
5
+ ## 0.4.0.0 -- 2025-05-30
6
+
5
7
### Breaking
6
8
7
9
* Add a new ` MustExist ` option to ` AllowExisting ` .
16
18
17
19
* Make it build with ` ghc-9.12 ` .
18
20
* Drop support for ` ghc-8.10 ` and ` ghc-9.2 ` .
21
+ * Support ` io-classes-1.8 ` .
19
22
* Bugfix: opening a file in read mode now expects the file to exist already.
20
23
This was already the semantics when using ` hOpen ` from the ` ioHasFS ` instance,
21
24
but it was not reflected in the ` allowExisting ` function. `allowExisting
22
25
Readmode` now returns ` MustExist` instead of ` AllowExisting`.
23
26
* Bugfix: ` hGetBufExactly ` and ` hGetBufExactlyAt ` would previously try to read
24
27
too many bytes in the presence of partial reads. These functions now properly
25
28
count the number of remaining bytes that have to be read.
26
- * Support ` io-classes-1.8 `
27
29
28
30
## 0.3.0.1 -- 2024-10-02
29
31
Original file line number Diff line number Diff line change 1
1
cabal-version : 3.0
2
2
name : fs-api
3
- version : 0.3 .0.1
3
+ version : 0.4 .0.0
4
4
synopsis : Abstract interface for the file system
5
5
description : Abstract interface for the file system.
6
6
license : Apache-2.0
Original file line number Diff line number Diff line change 2
2
3
3
## ?.?.?.? -- ????-??-??
4
4
5
+ ## 0.4.0.0 -- 2025-05-30
6
+
5
7
### Breaking
6
8
7
9
* Fix a bug where ` withErrors ` would not put back the previous ` Errors ` when an
32
34
### Patch
33
35
34
36
* Make it build with ` ghc-9.12 ` .
35
- * Support ` io-classes-1.8 ` .
36
37
* Drop support for ` ghc-8.10 ` and ` ghc-9.2 ` .
38
+ * Support ` io-classes-1.8 ` .
37
39
* Support the new ` MustExist ` option for ` AllowExisting ` that was added in
38
40
` fs-api ` .
39
41
Original file line number Diff line number Diff line change 1
1
cabal-version : 3.0
2
2
name : fs-sim
3
- version : 0.3.1 .0
3
+ version : 0.4.0 .0
4
4
synopsis : Simulated file systems
5
5
description : Simulated file systems.
6
6
license : Apache-2.0
@@ -42,7 +42,7 @@ library
42
42
, base16-bytestring ^>= 0.1 || ^>= 1.0
43
43
, bytestring ^>= 0.10 || ^>= 0.11 || ^>= 0.12
44
44
, containers ^>= 0.5 || ^>= 0.6 || ^>= 0.7
45
- , fs-api ^>= 0.3
45
+ , fs-api ^>= 0.4
46
46
, io-classes ^>= 1.6 || ^>= 1.7 || ^>= 1.8
47
47
, io-classes :strict-stm
48
48
, mtl ^>= 2.2 || ^>= 2.3
You can’t perform that action at this time.
0 commit comments