diff --git a/CHANGELOG.md b/CHANGELOG.md index c5df519..5082633 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,11 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline +## [v0.6.1](https://harton.dev/james/ash_cubdb/compare/v0.6.1-rc.0...v0.6.1) (2024-03-30) + + + + ## [v0.6.1-rc.0](https://harton.dev/james/ash_cubdb/compare/v0.6.0...v0.6.1-rc.0) (2024-03-30) diff --git a/README.md b/README.md index efdbc3c..642f44f 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ by adding `ash_cubdb` to your list of dependencies in `mix.exs`: ```elixir def deps do [ - {:ash_cubdb, "~> 0.6.1-rc.0"} + {:ash_cubdb, "~> 0.6.1"} ] end ``` diff --git a/mix.exs b/mix.exs index 79d41bc..9220a39 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule AshCubDB.MixProject do use Mix.Project - @version "0.6.1-rc.0" + @version "0.6.1" @moduledoc """ A CubDB data layer for `Ash` resources. @@ -70,7 +70,7 @@ defmodule AshCubDB.MixProject do opts = [only: ~w[dev test]a, runtime: false] [ - {:ash, "== 3.0.0-rc.5"}, + {:ash, "== 3.0.0-rc.7"}, {:cubdb, "~> 2.0"}, {:spark, "~> 2.1"}, {:earmark, ">= 0.0.0"},