From 4c6dcc6de5f71c5e04a1498c4126f0b98349d415 Mon Sep 17 00:00:00 2001 From: Peter Downs Date: Tue, 15 Oct 2024 18:56:55 -0400 Subject: [PATCH] docs: fix typo in changelog --- CHANGELOG.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 23f7f88..ade5754 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -84,13 +84,13 @@ more, but it seems like a reasonable target and is about a year old. Ratcheting up from go1.18+ to go1.21+ seems fine to me and will allow some small quality of life improvements and make contributing easier. -### *Breaking*: remove `Prepare()` and `Verify()` from `pgmigrator.Migrator` +### *Breaking*: remove `Prepare()` and `Verify()` from `pgtestdb.Migrator` ```go // Now: type Migrator interface { - Hash() (string, error) - Migrate(context.Context, *sql.DB, Config) error + Hash() (string, error) + Migrate(context.Context, *sql.DB, Config) error } // Before: type Migrator interface {