You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+14Lines changed: 14 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,18 @@
1
1
# Changelog
2
2
3
+
## [0.2.9] - 2024-04-25
4
+
5
+
### Added
6
+
7
+
Previously, the test functions supported were `fn(&Path) -> Result<()>` and `fn(&Utf8Path) -> Result<()>`. This release adds additional supported functions:
8
+
9
+
-`fn(&P, String) -> datatest_stable::Result<()>` where `P` is `Path` or `Utf8Path`. If the
10
+
extra `String` parameter is specified, the contents of the file will be loaded and passed in
11
+
as a string (erroring out if that failed).
12
+
-`fn(&P, Vec<u8>) -> datatest_stable::Result<()>` where `P` is `Path` or `Utf8Path`. If the
13
+
extra `Vec<u8>` parameter is specified, the contents of the file will be
14
+
loaded and passed in as a `Vec<u8>` (erroring out if that failed).
15
+
3
16
## [0.2.8] - 2024-04-24
4
17
5
18
### Fixed
@@ -96,6 +109,7 @@ There are no functional changes in this release.
96
109
97
110
(Version 0.1.0 was yanked because of a metadata issue.)
0 commit comments