diff --git a/CHANGELOG.md b/CHANGELOG.md index e934e95..672ef14 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# Changelog for GuardedStruct 0.0.3 + +- Fix deprecated code from Elixir 1.18.0-rc.0 + # Changelog for GuardedStruct 0.0.2 - Fix: Support charlists sigil warning and keep backward compatibility for charlist regex diff --git a/README.md b/README.md index 2e05972..0195d0c 100644 --- a/README.md +++ b/README.md @@ -96,7 +96,7 @@ Before explaining the copyright, I must point out that the primary library, whic ```elixir def deps do [ - {:guarded_struct, "~> 0.0.1"} + {:guarded_struct, "~> 0.0.3"} ] end ``` diff --git a/guidance/guarded-struct.livemd b/guidance/guarded-struct.livemd index e52d8bc..de3b35a 100644 --- a/guidance/guarded-struct.livemd +++ b/guidance/guarded-struct.livemd @@ -2,7 +2,7 @@ ```elixir Mix.install([ - {:guarded_struct, "~> 0.0.1"} + {:guarded_struct, "~> 0.0.3"} {:html_sanitize_ex, "~> 1.4.3"}, # Optional dependencies, It’s recommended to create your own diff --git a/mix.exs b/mix.exs index d8fdc15..f026586 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule GuardedStruct.MixProject do use Mix.Project - @version "0.0.2" + @version "0.0.3" @source_url "https://github.com/mishka-group/guarded_struct" def project do