File tree Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,12 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline
5
5
6
6
<!-- changelog -->
7
7
8
+ ## v0.2.0 (2025-05-19)
9
+
10
+ * Add option for using UUIDv7 as event log primary key
11
+ * Add Postgres transactional advisory locks when inserting events
12
+
13
+
8
14
## v0.1.1 (2025-05-08)
9
15
10
16
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ Add `ash_events` to your dependencies in `mix.exs`:
24
24
``` elixir
25
25
def deps do
26
26
[
27
- {:ash_events , " ~> 0.1.1 " }
27
+ {:ash_events , " ~> 0.2.0 " }
28
28
# ... other deps
29
29
]
30
30
end
Original file line number Diff line number Diff line change 1
1
defmodule AshEvents.MixProject do
2
2
use Mix.Project
3
3
4
- @ version "0.1.1 "
4
+ @ version "0.2.0 "
5
5
6
6
@ description """
7
7
The extension for tracking changes to your resources via a centralized event log, with replay functionality.
You can’t perform that action at this time.
0 commit comments