From 3c03dedc53240f264313b10850ca032d71114324 Mon Sep 17 00:00:00 2001 From: Jesse Dijkstra Date: Wed, 18 Oct 2017 15:51:11 +0200 Subject: [PATCH] Release v0.0.8 (#29) --- 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 50a51f4..ee10ffb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +# v0.0.8 +## Changed +- Use Phoenix.content_tag instead of Phoenix.tag by default and add option to remove the closing tag by adding `closing_tag: false` to the options (#27) +- The attribute name is now used to set the `data-cell` attribute and can be overridden to allow prefixing (#28) + # v0.0.7 ## Changed - Added a cell render method to ExCell.Controller to directly render cells as a view (#23) diff --git a/README.md b/README.md index e9234c5..e74b51d 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ A module for creating coupled modules of CSS, Javascript and Views in Phoenix Add the following to the dependencies in `mix.exs` ```ex -{:ex_cell, "~> 0.0.7"} +{:ex_cell, "~> 0.0.8"} ``` In Phoenix 1.3.0+ add the following to `lib/app_web/web.ex`: diff --git a/mix.exs b/mix.exs index 4afeb7c..bf753cb 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule ExCell.Mixfile do use Mix.Project - @version "0.0.7" + @version "0.0.8" def project do [app: :ex_cell,