changed CHANGELOG.md
 
@@ -5,6 +5,15 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline
5
5
6
6
<!-- changelog -->
7
7
8
+ ## [v2.1.6](https://github.com/ash-project/ash_phoenix/compare/v2.1.5...v2.1.6) (2024-10-17)
9
+
10
+
11
+
12
+
13
+ ### Improvements:
14
+
15
+ * allow phoenix_live_view rc
16
+
8
17
## [v2.1.5](https://github.com/ash-project/ash_phoenix/compare/v2.1.4...v2.1.5) (2024-10-14)
changed README.md
 
@@ -15,7 +15,7 @@ Welcome! This is the package for integrating [Phoenix Framework](https://www.pho
15
15
Add `ash_phoenix` to your list of dependencies in `mix.exs`:
16
16
17
17
```elixir
18
- {:ash_phoenix, "~> 2.1.5"}
18
+ {:ash_phoenix, "~> 2.1.6"}
19
19
```
20
20
21
21
## Whats in the box?
changed hex_metadata.config
 
@@ -1,7 +1,7 @@
1
1
{<<"links">>,
2
2
[{<<"GitHub">>,<<"https://github.com/ash-project/ash_phoenix">>}]}.
3
3
{<<"name">>,<<"ash_phoenix">>}.
4
- {<<"version">>,<<"2.1.5">>}.
4
+ {<<"version">>,<<"2.1.6">>}.
5
5
{<<"description">>,<<"Utilities for integrating Ash and Phoenix">>}.
6
6
{<<"elixir">>,<<"~> 1.11">>}.
7
7
{<<"app">>,<<"ash_phoenix">>}.
 
@@ -66,6 +66,6 @@
66
66
[{<<"name">>,<<"phoenix_live_view">>},
67
67
{<<"app">>,<<"phoenix_live_view">>},
68
68
{<<"optional">>,false},
69
- {<<"requirement">>,<<"~> 0.20.3 or ~> 1.0">>},
69
+ {<<"requirement">>,<<"~> 0.20.3 or ~> 1.0 or ~> 1.0.0-rc.1">>},
70
70
{<<"repository">>,<<"hexpm">>}]]}.
71
71
{<<"build_tools">>,[<<"mix">>]}.
changed mix.exs
 
@@ -5,7 +5,7 @@ defmodule AshPhoenix.MixProject do
5
5
Utilities for integrating Ash and Phoenix
6
6
"""
7
7
8
- @version "2.1.5"
8
+ @version "2.1.6"
9
9
10
10
def project do
11
11
[
 
@@ -131,7 +131,7 @@ defmodule AshPhoenix.MixProject do
131
131
{:ash, ash_version("~> 3.0 and >= 3.4.31")},
132
132
{:phoenix, "~> 1.5.6 or ~> 1.6"},
133
133
{:phoenix_html, "~> 4.0"},
134
- {:phoenix_live_view, "~> 0.20.3 or ~> 1.0"},
134
+ {:phoenix_live_view, "~> 0.20.3 or ~> 1.0 or ~> 1.0.0-rc.1"},
135
135
{:simple_sat, "~> 0.1", only: [:dev, :test]},
136
136
{:git_ops, "~> 2.5", only: [:dev, :test]},
137
137
{:ex_doc, "~> 0.32", only: [:dev, :test], override: true},