Current section

44 Versions

Jump to

Compare versions

4 files changed
+4 additions
-5 deletions
  @@ -6,8 +6,7 @@
6 6 Simplifile provides basic file operations (read, write, append, and delete) that work
7 7 for all targets (Erlang, Node, and Deno). It also provides functions for working with directories.
8 8
9 - Note: this library is evolving rapidly to get it ready for v1 status. When upgrading versions,
10 - be sure to check the changelog.
9 + Note: When upgrading versions, be sure to check the changelog.
11 10
12 11 ## Example
13 12 ```gleam
  @@ -1,5 +1,5 @@
1 1 name = "simplifile"
2 - version = "0.4.0"
2 + version = "1.0.0"
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">>, <<"0.4.0">>}.
3 + {<<"version">>, <<"1.0.0">>}.
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, "0.4.0"},
2 + {vsn, "1.0.0"},
3 3 {applications, [gleam_stdlib,
4 4 gleeunit]},
5 5 {description, "Basic file operations that work on all targets"},