From 384fe0a2c7cd2e3d2264ec82eeaba09f11b40fd6 Mon Sep 17 00:00:00 2001 From: Phil Chen <06fahchen@gmail.com> Date: Wed, 10 Jul 2024 18:09:06 +0800 Subject: [PATCH] chore: release 0.4.1 --- CHANGELOG.md | 8 ++++++++ guides/migrate_from_typed_struct.md | 2 +- mix.exs | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9a85d3d..4d41330 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [0.4.1](https://github.com/elixir-typed-structor/typed_structor/compare/v0.4.0...v0.4.1) (2024-07-10) + + +### Documentation + +* this release is a documentation update and does not contain any new features or bug fixes + + ## [0.4.0](https://github.com/elixir-typed-structor/typed_structor/compare/v0.3.0...v0.4.0) (2024-07-07) diff --git a/guides/migrate_from_typed_struct.md b/guides/migrate_from_typed_struct.md index 72a6703..706d620 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.1"}, ++ {:typed_structor, "~> 0.4"}, ] end ``` diff --git a/mix.exs b/mix.exs index 4d7b5e0..e8ec8f9 100644 --- a/mix.exs +++ b/mix.exs @@ -7,7 +7,7 @@ defmodule TypedStructor.MixProject do [ app: :typed_structor, description: "TypedStructor is a library for defining structs with types effortlessly.", - version: "0.4.0", + version: "0.4.1", elixir: "~> 1.14", elixirc_paths: elixirc_paths(Mix.env()), start_permanent: Mix.env() == :prod,