chore: release version v0.6.1

This commit is contained in:
Zach Daniel 2020-10-26 21:37:33 -04:00
parent 9a8c97ef2d
commit d2d19e166a
No known key found for this signature in database
GPG key ID: C377365383138D4B
3 changed files with 11 additions and 2 deletions

View file

@ -5,6 +5,15 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline
<!-- changelog --> <!-- changelog -->
## [v0.6.1](https://github.com/ash-project/ash_csv/compare/v0.6.0...v0.6.1) (2020-10-27)
### Bug Fixes:
* add separator_opt validator
## [v0.6.0](https://github.com/ash-project/ash_csv/compare/v0.5.0...v0.6.0) (2020-10-10) ## [v0.6.0](https://github.com/ash-project/ash_csv/compare/v0.5.0...v0.6.0) (2020-10-10)

View file

@ -11,7 +11,7 @@ A CSV data layer for Ash. Currently only meant for demos. The code is messy, its
```elixir ```elixir
def deps do def deps do
[ [
{:ash_csv, "~> 0.6.0"} {:ash_csv, "~> 0.6.1"}
] ]
end end
``` ```

View file

@ -1,7 +1,7 @@
defmodule AshCsv.MixProject do defmodule AshCsv.MixProject do
use Mix.Project use Mix.Project
@version "0.6.0" @version "0.6.1"
@description "A CSV data layer for Ash" @description "A CSV data layer for Ash"