From 889aba35197206c8f6f83e5ec834b7e52fd923a6 Mon Sep 17 00:00:00 2001 From: kn0wmad <39687477+kn0wmad@users.noreply.github.com> Date: Mon, 13 Mar 2023 14:46:52 +0000 Subject: [PATCH] Update to v0.4.1 (#8) --- Dockerfile | 2 +- manifest.yaml | 13 +------------ scripts/procedures/migrations.ts | 2 +- 3 files changed, 3 insertions(+), 14 deletions(-) diff --git a/Dockerfile b/Dockerfile index c645aca..0baca85 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM recksato/robosats-client:v0.4.0-alpha +FROM recksato/robosats-client:v0.4.1-alpha RUN apt-get update && apt-get install wget curl sudo bash tini -y RUN wget https://github.com/mikefarah/yq/releases/download/v4.6.3/yq_linux_amd64.tar.gz -O - |\ tar xz && mv yq_linux_amd64 /usr/bin/yq diff --git a/manifest.yaml b/manifest.yaml index 076dd94..25216fb 100644 --- a/manifest.yaml +++ b/manifest.yaml @@ -1,23 +1,12 @@ -# Example written in yaml (toml and json are also acceptable) - -# The package identifier used by the OS. This must be unique amongst all other known packages id: robosats - # A human readable service title title: "RoboSats" -# Service version - accepts up to four digits, where the last confirms to revisions necessary for EmbassyOS - see documentation: https://github.com/Start9Labs/emver-rs. This value will change with each release of the service. -version: 0.4.0 -# Release notes for the update - can be a string, paragraph or URL +version: 0.4.1 release-notes: | * Updated to v0.4.0-alpha [Release Notes](https://github.com/Reckless-Satoshi/robosats/releases/tag/v0.4.0-alpha) -# The type of license for the project. Include the LICENSE in the root of the project directory. A license is required for a Start9 package. license: mit -# The Start9 wrapper repository URL for the package. This repo contains the manifest file (this), any scripts necessary for configuration, backups, actions, or health checks (more below). This key must exist. But could be embedded into the source repository. wrapper-repo: "https://github.com/Start9Labs/robosats-wrapper" -# The original project repository URL. There is no upstream repo in this example upstream-repo: "https://github.com/Reckless-Satoshi/robosats" -# URL to the support site / channel for the project. This key can be omitted if none exists, or it can link to the original project repository issues. support-site: "https://github.com/Reckless-Satoshi/robosats/issues" -# URL to the marketing site for the project. This key can be omitted if none exists, or it can link to the original project repository. marketing-site: "https://learn.robosats.com/" # The series of commands to build the project into an s9pk for arm64/v8. In this case we are using a Makefile with the simple build command "make". build: ["make"] diff --git a/scripts/procedures/migrations.ts b/scripts/procedures/migrations.ts index 3551620..f0d1160 100644 --- a/scripts/procedures/migrations.ts +++ b/scripts/procedures/migrations.ts @@ -1,4 +1,4 @@ import { compat, types as T } from "../deps.ts"; export const migration: T.ExpectedExports.migration = compat.migrations - .fromMapping({}, "0.4.0" ); + .fromMapping({}, "0.4.1" );