From 3262457f450d3322bc168f44f0c4a8b41f43a3c5 Mon Sep 17 00:00:00 2001 From: Phil Chen <06fahchen@gmail.com> Date: Mon, 7 Oct 2024 19:34:06 +0800 Subject: [PATCH] docs: update version in the documentation --- README.md | 2 +- guides/migrate_from_typed_struct.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e6dc0ca..96ff1f4 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ Add `:typed_structor` to the list of dependencies in `mix.exs`: ```elixir def deps do [ - {:typed_structor, "~> 0.4"} + {:typed_structor, "~> 0.5"} ] end ``` diff --git a/guides/migrate_from_typed_struct.md b/guides/migrate_from_typed_struct.md index 706d620..c6ba166 100644 --- a/guides/migrate_from_typed_struct.md +++ b/guides/migrate_from_typed_struct.md @@ -12,7 +12,7 @@ It is a drop-in replacement for `typed_struct`. [ # ...deps - {:typed_struct, "~> 0.3.0"}, -+ {:typed_structor, "~> 0.4"}, ++ {:typed_structor, "~> 0.5"}, ] end ```