From 7d843f55391ee527fd3801936f079e91bcf123ed Mon Sep 17 00:00:00 2001 From: Zach Daniel Date: Tue, 6 Oct 2020 01:36:43 -0400 Subject: [PATCH] chore: release version v0.4.0 --- CHANGELOG.md | 9 +++++++++ README.md | 2 +- mix.exs | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d4f69b3..283826a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,15 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline +## [v0.4.0](https://github.com/ash-project/ash_csv/compare/v0.3.0...v0.4.0) (2020-10-06) + + + + +### Features: + +* tests + fixes + ## [v0.3.0](https://github.com/ash-project/ash_csv/compare/v0.2.0...v0.3.0) (2020-08-26) diff --git a/README.md b/README.md index b6f94d8..1a5daf4 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ A CSV data layer for Ash. Currently only meant for demos. The code is messy, its ```elixir def deps do [ - {:ash_csv, "~> 0.3.0"} + {:ash_csv, "~> 0.4.0"} ] end ``` diff --git a/mix.exs b/mix.exs index ece81f6..777424e 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule AshCsv.MixProject do use Mix.Project - @version "0.3.0" + @version "0.4.0" @description "A CSV data layer for Ash"