diff --git a/CHANGELOG.md b/CHANGELOG.md index 6ac9cc5..67a603d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# v0.0.11 + +* Added fallback when `data: nil` to prevent errors (#39) (#40). + # v0.0.10 * Introduced an extra argument to the containers that creates a unique ID. The unique ID is used to create specific cell elements. The cell elements function can be used by passing a function instead of content that contains a map with a `element` function (#35) (#36). diff --git a/README.md b/README.md index dcb42c8..9a372f5 100644 --- a/README.md +++ b/README.md @@ -3,14 +3,14 @@ # ex_cell -A module for creating coupled modules of CSS, Javascript and Views in Phoenix +A module for creating coupled modules of CSS, Javascript and Views in Phoenix. ## Installation -Add the following to the dependencies in `mix.exs` +Add the following to the dependencies in `mix.exs`: ```ex -{:ex_cell, "~> 0.0.10"} +{:ex_cell, "~> 0.0.11"} ``` In Phoenix 1.3.0+ add the following to `lib/app_web/web.ex`: diff --git a/mix.exs b/mix.exs index 79ed571..ee03153 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule ExCell.Mixfile do use Mix.Project - @version "0.0.10" + @version "0.0.11" def project do [app: :ex_cell,