Current section

44 Versions

Jump to

Compare versions

4 files changed
+4 additions
-4 deletions
  @@ -1,5 +1,5 @@
1 1 name = "simplifile"
2 - version = "1.4.1"
2 + version = "1.4.2"
3 3 description = "Basic file operations that work on all targets"
4 4
5 5 licences = ["Apache-2.0"]
  @@ -1,6 +1,6 @@
1 1 {<<"name">>, <<"simplifile">>}.
2 2 {<<"app">>, <<"simplifile">>}.
3 - {<<"version">>, <<"1.4.1">>}.
3 + {<<"version">>, <<"1.4.2">>}.
4 4 {<<"description">>, <<"Basic file operations that work on all targets">>}.
5 5 {<<"licenses">>, [<<"Apache-2.0">>]}.
6 6 {<<"build_tools">>, [<<"gleam">>]}.
  @@ -1,5 +1,5 @@
1 1 {application, simplifile, [
2 - {vsn, "1.4.1"},
2 + {vsn, "1.4.2"},
3 3 {applications, [gleam_stdlib,
4 4 gleeunit]},
5 5 {description, "Basic file operations that work on all targets"},
  @@ -228,7 +228,7 @@ pub fn append_bits(
228 228 /// let assert True = is_directory("./test")
229 229 /// ```
230 230 ///
231 - @deprecated("Use `is_valid_directory` instead")
231 + @deprecated("Use `verify_is_directory` instead")
232 232 pub fn is_directory(filepath: String) -> Bool {
233 233 do_is_directory(filepath)
234 234 }