From 6ec153c2a5225723b87f0a60ade18a615cec8bd0 Mon Sep 17 00:00:00 2001 From: Phil Chen <06fahchen@gmail.com> Date: Fri, 28 Jun 2024 23:50:24 +0800 Subject: [PATCH] chore: bump to version 0.1.1 --- CHANGELOG.md | 5 +++++ README.md | 2 +- mix.exs | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 60700d2..2d2a181 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 0.1.1 (2024-06-28) + +### Bug Fixes +- if default is set, then this field is enforced (#2) + ## 0.1.0 (2024-06-28) ### Features diff --git a/README.md b/README.md index bdb0170..92d47c1 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ Add `:typed_structor` to the list of dependencies in `mix.exs`: ```elixir def deps do [ - {:typed_structor, "~> 0.1.0"} + {:typed_structor, "~> 0.1.1"} ] end ``` diff --git a/mix.exs b/mix.exs index 47b98e5..e9daabf 100644 --- a/mix.exs +++ b/mix.exs @@ -5,7 +5,7 @@ defmodule TypedStructor.MixProject do [ app: :typed_structor, description: "TypedStructor is a library for defining structs with types effortlessly.", - version: "0.1.0", + version: "0.1.1", elixir: "~> 1.14", elixirc_paths: elixirc_paths(Mix.env()), start_permanent: Mix.env() == :prod,