Skip to content

Commit

Permalink
Release: 3.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cpursley committed Jan 7, 2024
1 parent 7ca568b commit a073715
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ WalEx allows you to listen to change events on your Postgres tables then send th
- Stream database changes to an event service like [EventRelay](https://github.com/eventrelay/eventrelay)
- Send a user a welcome email after they create a new account
- Augment an existing Postgres-backed application with business logic
- Send events to third party services (analytics, CRM, webhooks, etc)
- Send events to third party services (analytics, CRM, [webhooks](#webhooks))
- Update index / invalidate cache whenever a record is changed

You can learn more about CDC and what you can do with it here: [Why capture changes?](https://bbhoss.io/posts/announcing-cainophile/#why-capture-changes)
Expand All @@ -27,7 +27,7 @@ by adding `walex` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:walex, "~> 3.6.0"}
{:walex, "~> 3.7.0"}
]
end
```
Expand Down Expand Up @@ -191,7 +191,7 @@ where _name_ field was changed):
type: :update,
source: %WalEx.Event.Source{
name: "WalEx",
version: "3.6.0",
version: "3.7.0",
db: "todos",
schema: "public",
table: "user",
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ defmodule WalEx.MixProject do
def project do
[
app: :walex,
version: "3.6.0",
version: "3.7.0",
elixir: "~> 1.15",
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
Expand Down

0 comments on commit a073715

Please sign in to comment.