Skip to content

Commit

Permalink
Bump to 0.13.0 (#106)
Browse files Browse the repository at this point in the history
  • Loading branch information
maltoe committed Jun 27, 2024
1 parent c4a579d commit 01e0222
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Unreleased
## [0.13.0] - 2024-06-27

**New migration patches:** 9

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
Expand All @@ -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)
Expand All @@ -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
```
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
defmodule Carbonite.MixProject do
use Mix.Project

@version "0.12.1"
@version "0.13.0"

def project do
[
Expand Down

0 comments on commit 01e0222

Please sign in to comment.