chore: release version v1.13.3

This commit is contained in:
Zach Daniel 2020-09-19 16:40:30 -04:00
parent f41cc77549
commit 377935ef6b
No known key found for this signature in database
GPG key ID: C377365383138D4B
3 changed files with 24 additions and 5 deletions

View file

@ -5,6 +5,25 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline
<!-- changelog --> <!-- changelog -->
## [v1.13.3](https://github.com/ash-project/ash/compare/v1.13.2...v1.13.3) (2020-09-19)
### Features:
* set_attribute builtin change
* (greater_than/less_than)_or_equal predicates
* support deletes as updates via "soft"
* support base_filters
### Bug Fixes:
* less_than predicate was flipped for runtime
## [v1.13.2](https://github.com/ash-project/ash/compare/v1.13.1...v1.13.2) (2020-09-07) ## [v1.13.2](https://github.com/ash-project/ash/compare/v1.13.1...v1.13.2) (2020-09-07)
@ -34,7 +53,7 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline
* required belongs_to relationships (#107) * required belongs_to relationships (#107)
* support filter templates on read actions * support filter templates on read actions
* builtin concat calculation * builtin concat calculation
@ -48,9 +67,9 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline
### Bug Fixes: ### Bug Fixes:
* various delegate data layer improvements * various delegate data layer improvements
* engine halting issues * engine halting issues
* resolve engine deadlocks * resolve engine deadlocks

View file

@ -12,7 +12,7 @@ Ash is in alpha. The package version is 1.0.0+, and most of the time that means
```elixir ```elixir
def deps do def deps do
[ [
{:ash, "~> 1.13.2"} {:ash, "~> 1.13.3"}
] ]
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 "1.13.2" @version "1.13.3"
def project do def project do
[ [