From e5c260c33d3704aa5dfdbdddbb9137758e195071 Mon Sep 17 00:00:00 2001 From: Dominion5254 Date: Fri, 3 Jan 2025 13:04:50 -0700 Subject: [PATCH] bump version (#158) --- manifest.yaml | 2 +- scripts/services/migrations.ts | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) 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" );