chore: release version v2.17.20

This commit is contained in:
Zach Daniel 2024-01-04 00:57:55 -05:00
parent fadecf3ee9
commit 5b222f9a68
5 changed files with 24 additions and 7 deletions

View file

@ -5,6 +5,23 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline
<!-- changelog --> <!-- changelog -->
## [v2.17.20](https://github.com/ash-project/ash/compare/v2.17.19...v2.17.20) (2024-01-04)
### Bug Fixes:
* add required check for stream pagination
### Improvements:
* atomic validation implementations for most validations
* support type operator overloading
* add some atomic implementations
## [v2.17.19](https://github.com/ash-project/ash/compare/v2.17.18...v2.17.19) (2023-12-30) ## [v2.17.19](https://github.com/ash-project/ash/compare/v2.17.18...v2.17.19) (2023-12-30)

View file

@ -10,7 +10,7 @@
```elixir ```elixir
def deps do def deps do
[ [
{:ash, "~> 2.17.19"} {:ash, "~> 2.17.20"}
] ]
end end
``` ```

View file

@ -16,7 +16,7 @@ if Mix.env() == :dev do
manage_mix_version?: true, manage_mix_version?: true,
# Instructs the tool to manage the version in your README.md # Instructs the tool to manage the version in your README.md
# Pass in `true` to use `"README.md"` or a string to customize # Pass in `true` to use `"README.md"` or a string to customize
manage_readme_version: ["README.md", "documentation/tutorials/1-get-started.md"], manage_readme_version: ["README.md", "documentation/tutorials/get-started.md"],
version_tag_prefix: "v" version_tag_prefix: "v"
end end

View file

@ -87,7 +87,7 @@ defp deps do
[ [
# {:dep_from_hexpm, "~> 0.3.0"}, # {:dep_from_hexpm, "~> 0.3.0"},
# {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"}, # {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"},
{:ash, "~> 2.17.19"} # <-- add this line {:ash, "~> 2.17.20"} # <-- add this line
] ]
end end
``` ```

View file

@ -7,7 +7,7 @@ defmodule Ash.MixProject do
designed to be used by multiple front ends. designed to be used by multiple front ends.
""" """
@version "2.17.19" @version "2.17.20"
def project do def project do
[ [
@ -77,9 +77,9 @@ defmodule Ash.MixProject do
defp groups_for_extras do defp groups_for_extras do
[ [
Tutorials: [ Tutorials: [
"documentation/tutorials/1-get-started.md", "documentation/tutorials/get-started.md",
"documentation/tutorials/2-philosophy.md", "documentation/tutorials/philosophy.md",
"documentation/tutorials/3-why-ash.md", "documentation/tutorials/why-ash.md",
~r'documentation/tutorials' ~r'documentation/tutorials'
], ],
"How To": ~r'documentation/how_to', "How To": ~r'documentation/how_to',