From 4b27f1523cea388153ef42cbce377d044668ba5b Mon Sep 17 00:00:00 2001 From: James Harton Date: Mon, 2 Oct 2023 02:23:00 +0000 Subject: [PATCH] chore: release version v0.3.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 c64e64b..847d539 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,15 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline +## [v0.3.0](https://code.harton.nz/james/ash_cubdb/compare/v0.2.0...v0.3.0) (2023-10-02) + + + + +### Features: + +* Support updating existing records. + ## [v0.2.0](https://code.harton.nz/james/ash_cubdb/compare/v0.1.0...v0.2.0) (2023-09-29) diff --git a/README.md b/README.md index a457faa..fa1843f 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.2.0"} + {:ash_cubdb, "~> 0.3.0"} ] end ``` diff --git a/mix.exs b/mix.exs index 26e3ec9..baf5ac2 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule AshCubDB.MixProject do use Mix.Project - @version "0.2.0" + @version "0.3.0" @moduledoc """ A CubDB data layer for `Ash` resources.