Skip to content

Commit

Permalink
Add CHANGELOG and edit LiveBook
Browse files Browse the repository at this point in the history
  • Loading branch information
shahryarjb committed Nov 2, 2024
1 parent db68e30 commit 1524b77
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Changelog for GuardedStruct 0.0.1

- Detach from the Mishka developer tools library
- Remove optional libraries (must be enabled by the user)
- Improvements in some tests
7 changes: 4 additions & 3 deletions guidance/guarded-struct.livemd
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,14 @@
```elixir
Mix.install([
{:guarded_struct, "~> 0.0.1"}
# Optional dependencies
{:html_sanitize_ex, "~> 1.4.3"},

# Optional dependencies, It’s recommended to create your own
# custom validation and sanitization functions instead of
# enabling these libraries.
{:email_checker, "~> 0.2.4"},
{:ex_url, "~> 2.0"},
{:ex_phone_number, "~> 0.4.3"},
{:ecto_sql, "~> 3.11"},
{:postgrex, "~> 0.17.2"}
])
```

Expand Down
3 changes: 2 additions & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ defmodule GuardedStruct.MixProject do
links: %{
"Mishka" => "https://mishka.tools",
"GitHub" => @source_url,
"Changelog" => "#{@source_url}/blob/master/CHANGELOG.md"
"Changelog" => "#{@source_url}/blob/master/CHANGELOG.md",
"LiveBook document" => "#{@source_url}/blob/master/guidance/guarded-struct.livemd"
}
]
end
Expand Down

0 comments on commit 1524b77

Please sign in to comment.