Skip to content

Commit

Permalink
update-1.9.18 (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
13Homer13 authored Dec 3, 2024
1 parent b1012d6 commit eb9b48b
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ RUN apt update && \

WORKDIR /opt

ARG BISQ_VERSION=1.9.17
ARG BISQ_VERSION=1.9.18
ENV BISQ_DEBFILE Bisq-64bit-$BISQ_VERSION.deb
ENV BISQ_DEB_URL https://bisq.network/downloads/v$BISQ_VERSION/$BISQ_DEBFILE
ENV BISQ_ASC_URL https://bisq.network/downloads/v$BISQ_VERSION/$BISQ_DEBFILE.asc
Expand Down
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ clean:
rm -f scripts/*.js

scripts/embassy.js: $(TS_FILES)
deno bundle scripts/embassy.ts scripts/embassy.js
deno run --allow-read --allow-write --allow-env --allow-net scripts/bundle.ts


docker-images/aarch64.tar: Dockerfile
ifeq ($(ARCH),x86_64)
Expand Down
4 changes: 2 additions & 2 deletions manifest.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@

id: bisq
title: "Bisq"
version: 1.9.17
version: 1.9.18
release-notes: |
- Upstream Bisq update to version 1.9.17 - [click here for more info](https://github.com/bisq-network/bisq/releases/tag/v1.9.17)
- Upstream Bisq update to version 1.9.18 - [click here for more info](https://github.com/bisq-network/bisq/releases/tag/v1.9.18)
license: GPLv3
wrapper-repo: "https://github.com/Start9Labs/bisq-startos"
upstream-repo: "https://github.com/bisq-network/bisq"
Expand Down
3 changes: 3 additions & 0 deletions scripts/bundle.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import { bundle } from "https://deno.land/x/[email protected]/mod.ts";
const result = await bundle("scripts/embassy.ts");
await Deno.writeTextFile("scripts/embassy.js", result.code);
2 changes: 1 addition & 1 deletion scripts/procedures/migrations.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { compat, types as T } from "../deps.ts";

export const migration: T.ExpectedExports.migration = compat.migrations
.fromMapping({}, "1.9.17" );
.fromMapping({}, "1.9.18" );

0 comments on commit eb9b48b

Please sign in to comment.