Skip to content

Commit

Permalink
revert version to 27.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
j34g committed Nov 8, 2024
1 parent c06337c commit 233dcf1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion manifest.yaml
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
8 changes: 4 additions & 4 deletions scripts/services/migrations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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"
);

0 comments on commit 233dcf1

Please sign in to comment.