diff --git a/manifest.yaml b/manifest.yaml index 4c8f7fd..3211966 100644 --- a/manifest.yaml +++ b/manifest.yaml @@ -1,6 +1,6 @@ id: bitcoind title: "Bitcoin Knots" -version: 27.1.0.1 +version: 27.1.0 eos-version: 0.3.5.1 release-notes: | * Latest release from Knots - see full release notes [here](https://github.com/bitcoinknots/bitcoin/releases/tag/v27.1.knots20240801) diff --git a/scripts/services/migrations.ts b/scripts/services/migrations.ts index abbac5a..ed205c2 100644 --- a/scripts/services/migrations.ts +++ b/scripts/services/migrations.ts @@ -3,18 +3,18 @@ import { compat, types as T } from "../dependencies.ts"; export const migration: T.ExpectedExports.migration = compat.migrations.fromMapping( { - "27.1.0.1": { + "27.1.0": { up: compat.migrations.updateConfig( (config: any) => config, false, - { version: "27.1.0.1", type: "up" } + { version: "27.1.0", type: "up" } ), down: compat.migrations.updateConfig( (config: any) => config, false, - { version: "27.1.0.1", type: "down" } + { version: "27.1.0", type: "down" } ), }, }, - "27.1.0.1" + "27.1.0" ); \ No newline at end of file