chore: release version v2.6.0

This commit is contained in:
Zach Daniel 2023-02-05 18:12:54 -05:00
parent b425b243f5
commit 8dcd5fc740
4 changed files with 33 additions and 4 deletions

View file

@ -5,6 +5,35 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline
<!-- changelog -->
## [v2.6.0](https://github.com/ash-project/ash/compare/v2.5.16...v2.6.0) (2023-02-05)
### Features:
* initial (and slightly experimental) Api.aggregate support
### Bug Fixes:
* handle `{:ref, ...}` tuple in static syntax
* various fast follows to api aggregate functions
* pattern match problem in aggregate action
* properly handle nested array type constraint validation
### Improvements:
* update spark for latest doc improvements
* better description of `action_type` check
* add more builders
* stop running preparations if one of them returns an error
## [v2.5.16](https://github.com/ash-project/ash/compare/v2.5.15...v2.5.16) (2023-02-01)

View file

@ -8,7 +8,7 @@
```elixir
def deps do
[
{:ash, "~> 2.5.16"}
{:ash, "~> 2.6.0"}
]
end
```

View file

@ -73,7 +73,7 @@ defp deps do
[
# {:dep_from_hexpm, "~> 0.3.0"},
# {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"},
{:ash, "~> 2.5.16"} # <-- add this line
{:ash, "~> 2.6.0"} # <-- add this line
]
end
```
@ -100,7 +100,7 @@ defp deps do
[
# {:dep_from_hexpm, "~> 0.3.0"},
# {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"}
{:ash, "~> 2.5.16"},
{:ash, "~> 2.6.0"},
{:elixir_sense, github: "elixir-lsp/elixir_sense", only: [:dev, :test]} # <-- add this line
]
end

View file

@ -7,7 +7,7 @@ defmodule Ash.MixProject do
designed to be used by multiple front ends.
"""
@version "2.5.16"
@version "2.6.0"
def project do
[