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

This commit is contained in:
James Harton 2023-10-02 02:43:40 +00:00
parent 78587fced6
commit bc079c5363
3 changed files with 15 additions and 2 deletions

View file

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

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.3.1"} {:ash_cubdb, "~> 0.4.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.3.1" @version "0.4.0"
@moduledoc """ @moduledoc """
A CubDB data layer for `Ash` resources. A CubDB data layer for `Ash` resources.