From c2b6c88f2cc15ca1aa54e14967fd3e8675651979 Mon Sep 17 00:00:00 2001 From: Phil Chen <06fahchen@gmail.com> Date: Wed, 3 Jul 2024 22:54:15 +0800 Subject: [PATCH] chore: bump to v0.3.0 --- CHANGELOG.md | 16 ++++++++++++++++ README.md | 2 +- mix.exs | 2 +- 3 files changed, 18 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 832e020..ff607ce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Changelog +## [0.3.0](https://github.com/elixir-typed-structor/typed_structor/compare/v0.2.0...v0.3.0) (2024-07-03) + + +### ⚠ BREAKING CHANGES + +* remove accessible plugin, add it to guides + +### Bug Fixes + +* macro capture will capture import context ([9c6f340](https://github.com/elixir-typed-structor/typed_structor/commit/9c6f3406009565b1e7ccab77d7ce24a7ee3984e6)) + + +### Code Refactoring + +* remove accessible plugin, add it to guides ([204cb0a](https://github.com/elixir-typed-structor/typed_structor/commit/204cb0aeab5a7ca8d5a15d7e016243d66af6e595)) + ## [0.2.0](https://github.com/elixir-typed-structor/typed_structor/compare/v0.1.5...v0.2.0) (2024-06-30) diff --git a/README.md b/README.md index fe2e79f..ccaa893 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"} + {:typed_structor, "~> 0.3"} ] end ``` diff --git a/mix.exs b/mix.exs index c5002dd..46d3b4d 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.2.0", + version: "0.3.0", elixir: "~> 1.14", elixirc_paths: elixirc_paths(Mix.env()), start_permanent: Mix.env() == :prod,