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.