diff --git a/manifest.yaml b/manifest.yaml index 8bbc80b..e3e403c 100644 --- a/manifest.yaml +++ b/manifest.yaml @@ -1,6 +1,6 @@ id: bitcoind title: "Bitcoin Core" -version: 28.0.0 +version: 28.0.0.1 eos-version: 0.3.4.4 release-notes: | * Update Bitcoin to [v28.0](https://github.com/bitcoin/bitcoin/releases/tag/v28.0) diff --git a/scripts/services/migrations.ts b/scripts/services/migrations.ts index 100c48a..5244173 100644 --- a/scripts/services/migrations.ts +++ b/scripts/services/migrations.ts @@ -267,7 +267,7 @@ export const migration: T.ExpectedExports.migration = { version: "26.0.0.1", type: "down" } ), }, - "28.0.0": { + "28.0.0.1": { up: compat.migrations.updateConfig( (config) => { if ( @@ -285,15 +285,15 @@ export const migration: T.ExpectedExports.migration = }, true, { - version: "28.0.0", + version: "28.0.0.1", type: "up", } ), down: compat.migrations.updateConfig((config: any) => config, true, { - version: "28.0.0", + version: "28.0.0.1", type: "down", }), }, }, - "28.0.0" + "28.0.0.1" );