diff --git a/CHANGELOG.md b/CHANGELOG.md index f58cf8e..7f9d225 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,7 +17,6 @@ - [x] Support `domain` key inside children fields - [x] Support new derives: `not_flatten_empty`, `not_flatten_empty_item` as validation - [x] Support `not_empty` and `max_len`, `min_len` for list in validation derive. -- [ ] Add `condition_field` fields inside `__information__` function **Fixed bugs**: - [x] Fix and Remove `downcase` bug in `strip_tags` @@ -28,7 +27,7 @@ - [x] Changing the structure of on core key based on the value of the caller - [x] Support calling struct inside itself - [x] Separate all test of `GuardedStruct` macro in different files -- [ ] Add `dialyzer` for GuardedStruct macro +- [x] Add `dialyzer` for GuardedStruct macro # Changelog for MishkaDeveloperTools 0.1.2 diff --git a/README.md b/README.md index 3f0df99..d8c600b 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ We tried to deliver a series of our client's [**CMS**](https://github.com/mishka-group/mishka-cms) built on [**Elixir**](https://elixir-lang.org/) at the start of the [**Mishka Group**](https://github.com/mishka-group) project, but we recently archived this open-source project and have yet to make plans to rework and expand it. This system was created using [**Phoenix**](https://www.phoenixframework.org/) and [**Phoenix LiveView**](https://hexdocs.pm/phoenix_live_view/Phoenix.LiveView.html). After a long period, a series of macros and functional modules emerged from this project and our other projects, which we are gradually publishing in this library. -> **NOTICE**: Do not use the master branch; this library is under heavy development. Expect version `0.1.2`, and for using the new features, please wait until a new release is out. +> **NOTICE**: Do not use the master branch; this library is under heavy development. Expect version `0.1.3`, and for using the new features, please wait until a new release is out. --- @@ -24,7 +24,7 @@ The package can be installed by adding `mishka_developer_tools` to your list of ```elixir def deps do [ - {:mishka_developer_tools, "~> 0.1.2"} + {:mishka_developer_tools, "~> 0.1.3"} ] end ``` diff --git a/lib/mishka_developer_tools.ex b/lib/mishka_developer_tools.ex index b33cf54..cbb74d7 100644 --- a/lib/mishka_developer_tools.ex +++ b/lib/mishka_developer_tools.ex @@ -11,7 +11,7 @@ defmodule MishkaDeveloperTools do project and our other projects, which we are gradually publishing in this library. > **NOTICE**: Do not use the master branch; this library is under heavy development. - Expect version `0.1.2`, and for using the new features, please wait until a new release is out. + Expect version `0.1.3`, and for using the new features, please wait until a new release is out. --- - #### [GuardedStruct](https://github.com/mishka-group/mishka_developer_tools/blob/master/guidance/guarded-struct.md) @@ -31,7 +31,7 @@ defmodule MishkaDeveloperTools do ```elixir def deps do [ - {:mishka_developer_tools, "~> 0.1.2"} + {:mishka_developer_tools, "~> 0.1.3"} ] end ```