From f17f9320a7ddf79c2a00e4d7d4092c34e2d8c338 Mon Sep 17 00:00:00 2001 From: Zach Daniel Date: Wed, 2 Aug 2023 12:30:00 -0400 Subject: [PATCH] chore: release version v0.9.3 --- CHANGELOG.md | 11 +++++++++++ README.md | 2 +- mix.exs | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cbb5c09..ca4930b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,17 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline +## [v0.9.3](https://github.com/ash-project/ash_csv/compare/v0.9.2...v0.9.3) (2023-08-02) + + + + +### Bug Fixes: + +* fix upsert behavior + +* support latest ash + ## [v0.9.2](https://github.com/ash-project/ash_csv/compare/v0.9.1...v0.9.2) (2023-01-18) diff --git a/README.md b/README.md index 64db2bc..bcab391 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ A CSV data layer for Ash. ```elixir def deps do [ - {:ash_csv, "~> 0.9.2"} + {:ash_csv, "~> 0.9.3"} ] end ``` diff --git a/mix.exs b/mix.exs index 42a8117..360da93 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule AshCsv.MixProject do use Mix.Project - @version "0.9.2" + @version "0.9.3" @description "A CSV data layer for Ash"