chore: release version v0.3.0
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
James Harton 2023-10-02 02:23:00 +00:00
parent 6b1954baf6
commit 4b27f1523c
3 changed files with 11 additions and 2 deletions

View file

@ -5,6 +5,15 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline
<!-- changelog --> <!-- changelog -->
## [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) ## [v0.2.0](https://code.harton.nz/james/ash_cubdb/compare/v0.1.0...v0.2.0) (2023-09-29)

View file

@ -38,7 +38,7 @@ by adding `ash_cubdb` to your list of dependencies in `mix.exs`:
```elixir ```elixir
def deps do def deps do
[ [
{:ash_cubdb, "~> 0.2.0"} {:ash_cubdb, "~> 0.3.0"}
] ]
end end
``` ```

View file

@ -1,7 +1,7 @@
defmodule AshCubDB.MixProject do defmodule AshCubDB.MixProject do
use Mix.Project use Mix.Project
@version "0.2.0" @version "0.3.0"
@moduledoc """ @moduledoc """
A CubDB data layer for `Ash` resources. A CubDB data layer for `Ash` resources.