From 568620c042e7699468a06d89dd5dc542a57d0218 Mon Sep 17 00:00:00 2001 From: James Harton Date: Mon, 2 Oct 2023 02:43:40 +0000 Subject: [PATCH] chore: release version v0.4.0 --- CHANGELOG.md | 13 +++++++++++++ README.md | 2 +- mix.exs | 2 +- 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9cfea29..e3088ba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,19 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline +## [v0.4.0](https://code.harton.nz/james/ash_cubdb/compare/v0.3.1...v0.4.0) (2023-10-02) + + + + +### Features: + +* Support destroying records. + +### Bug Fixes: + +* honour tenancy when updating. + ## [v0.3.1](https://code.harton.nz/james/ash_cubdb/compare/v0.3.0...v0.3.1) (2023-10-02) diff --git a/README.md b/README.md index 68de95d..732d67e 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ by adding `ash_cubdb` to your list of dependencies in `mix.exs`: ```elixir def deps do [ - {:ash_cubdb, "~> 0.3.1"} + {:ash_cubdb, "~> 0.4.0"} ] end ``` diff --git a/mix.exs b/mix.exs index 3ff7004..e82108a 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule AshCubDB.MixProject do use Mix.Project - @version "0.3.1" + @version "0.4.0" @moduledoc """ A CubDB data layer for `Ash` resources.