diff --git a/CHANGELOG.md b/CHANGELOG.md index ab00833..238cc77 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## Unreleased +## [0.13.0] - 2024-06-27 **New migration patches:** 9 diff --git a/README.md b/README.md index 6a17e91..5eb6a43 100644 --- a/README.md +++ b/README.md @@ -93,7 +93,7 @@ Due to its use of [`pg_current_xact_id`](https://www.postgresql.org/docs/13/func # mix.exs def deps do [ - {:carbonite, "~> 0.12.1"} + {:carbonite, "~> 0.13.0"} ] end ``` @@ -120,7 +120,7 @@ defmodule MyApp.Repo.Migrations.InstallCarbonite do use Ecto.Migration def up do - Carbonite.Migrations.up(1..8) + Carbonite.Migrations.up(1..9) # For each table that you want to capture changes of, you need to install the trigger. Carbonite.Migrations.create_trigger(:rabbits) @@ -140,7 +140,7 @@ defmodule MyApp.Repo.Migrations.InstallCarbonite do Carbonite.Migrations.drop_trigger(:rabbits) # Drop the Carbonite tables. - Carbonite.Migrations.down(8..1) + Carbonite.Migrations.down(9..1) end end ``` diff --git a/mix.exs b/mix.exs index 9eabf0b..e5d9df3 100644 --- a/mix.exs +++ b/mix.exs @@ -3,7 +3,7 @@ defmodule Carbonite.MixProject do use Mix.Project - @version "0.12.1" + @version "0.13.0" def project do [