From 052dc87ef2d42a8cc82eb73701c8588b0fa629b9 Mon Sep 17 00:00:00 2001 From: James Harton Date: Fri, 29 Sep 2023 07:31:46 +0000 Subject: [PATCH] chore: release version v0.2.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 4cbd0ce..c64e64b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,15 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline +## [v0.2.0](https://code.harton.nz/james/ash_cubdb/compare/v0.1.0...v0.2.0) (2023-09-29) + + + + +### Features: + +* `create` and `read` works. + ## [v0.1.0](https://code.harton.nz/james/ash_cubdb/compare/v0.1.0...v0.1.0) (2023-08-07) diff --git a/README.md b/README.md index 327ae0b..8537b40 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ by adding `ash_cubdb` to your list of dependencies in `mix.exs`: ```elixir def deps do [ - {:ash_cubdb, "~> 0.1.0"} + {:ash_cubdb, "~> 0.2.0"} ] end ``` diff --git a/mix.exs b/mix.exs index 1075539..c48e1fb 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule AshCubDB.MixProject do use Mix.Project - @version "0.1.0" + @version "0.2.0" @moduledoc """ A CubDB data layer for `Ash` resources.