diff --git a/CHANGELOG.md b/CHANGELOG.md
index b028afc..4df7860 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,12 @@
All notable changes to this project will be documented in this file.
+## [v0.2.0] (2022-04-06)
+
+## Improvements
+
+* Add `.formatter.exs` to files to allow `import_deps: [:cva]`.
+
## [v0.2.0] (2022-12-06)
### Improvements
@@ -12,13 +18,13 @@ All notable changes to this project will be documented in this file.
variant :disabled,
[true: "disabled-class", false: "enabled-class"],
default: false
-
+
# or
variant :disabled,
[true: "disabled-class"],
default: nil
-
+
def button(assigns) do
~H"""
"""
end
-
+
# ... where you use that component
-<.button disabled>Click me
+<.button disabled>Click me
# ->
```
diff --git a/mix.exs b/mix.exs
index 469f1a5..527eea3 100644
--- a/mix.exs
+++ b/mix.exs
@@ -1,7 +1,7 @@
defmodule CVA.MixProject do
use Mix.Project
- @version "0.2.0"
+ @version "0.2.1"
def project do
[