Skip to content

Commit

Permalink
Update to v0.5.0 upstream, update migration, update README, add prepa…
Browse files Browse the repository at this point in the history
…re.sh (#13)
  • Loading branch information
kn0wmad authored May 11, 2023
1 parent f5769c6 commit e0c5ca2
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM recksato/robosats-client:v0.4.3-alpha
FROM recksato/robosats-client:v0.5.0-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
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,12 @@ docker run --privileged --rm linuxkit/binfmt:v0.8
```
4. Install yq
```
sudo snap install yq
wget https://github.com/mikefarah/yq/releases/download/${VERSION}/${BINARY}.tar.gz -O - |\
tar xz && mv ${BINARY} /usr/bin/yq
```
5. Install deno
```
sudo snap install deno
cargo install deno
```
6. Install essentials build packages
```
Expand Down
6 changes: 3 additions & 3 deletions manifest.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
id: robosats
title: "RoboSats"
version: 0.4.3.1
version: 0.5.0
release-notes: |
* Updated to v0.4.3-alpha [Release Notes](https://github.com/Reckless-Satoshi/robosats/releases/tag/v0.4.3-alpha)
* Added Donation Link for RoboSats team
* Updated to v0.5.0-alpha [Release Notes](https://github.com/Reckless-Satoshi/robosats/releases/tag/v0.5.0-alpha)
* Updated build instructions in README
license: mit
wrapper-repo: "https://github.com/kn0wmad/robosats-wrapper"
upstream-repo: "https://github.com/Reckless-Satoshi/robosats"
Expand Down
8 changes: 8 additions & 0 deletions prepare.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/bin/bash

# install yq
wget https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64 -O /usr/bin/yq &&\
chmod +x /usr/bin/yq

# install deno
cargo install deno
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({}, "0.4.3.1" );
.fromMapping({}, "0.5.0" );

0 comments on commit e0c5ca2

Please sign in to comment.