Skip to content

Commit f11414d

Browse files
chore(release): bump version to v1.8.0 (#1375)
1 parent fc86bfb commit f11414d

19 files changed

+23
-23
lines changed

.github/workflows/push_release_images.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
uses: docker/setup-buildx-action@v3
5353
- name: Set container image tags
5454
# Set the tags for the {container}-{version} and {container}
55-
# For example: ':alpine-v1.7.1' and ':alpine'
55+
# For example: ':alpine-v1.8.0' and ':alpine'
5656
run: |
5757
TAGS="${{ env.DOCKERHUB_REPO }}:${{ matrix.container }}-${{ env.NODEBUILDER_VERSION }}"
5858
TAGS="${TAGS},${{ env.DOCKERHUB_REPO }}:${{ matrix.container }}"
@@ -100,7 +100,7 @@ jobs:
100100
# Push if the CI run isn't from a beta prerelease
101101
push: ${{ !github.event.release.prerelease }}
102102
# Set the tags for the ubuntu-{version}, ubuntu, {version}, and latest
103-
# For example, ':ubuntu-v1.7.1', ':ubuntu', ':v1.7.1', and ':latest'
103+
# For example, ':ubuntu-v1.8.0', ':ubuntu', ':v1.8.0', and ':latest'
104104
tags: |
105105
${{ env.DOCKERHUB_REPO }}:${{ env.DEFAULT_IMAGE }}-${{ needs.build-and-push.outputs.nodebuilder-version }}
106106
${{ env.DOCKERHUB_REPO }}:${{ env.DEFAULT_IMAGE }}

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Run a secure Bitcoin Core node with ease.
55
Copy-paste the following command into Terminal:
66

77
```sh
8-
sh -c "$(curl -fsSL https://github.com/bitcoin-tools/nodebuilder/raw/v1.7.1/nodebuilder)"
8+
sh -c "$(curl -fsSL https://github.com/bitcoin-tools/nodebuilder/raw/v1.8.0/nodebuilder)"
99
```
1010

1111
[![Supports: Docker](https://img.shields.io/badge/supports-Docker-blue.svg?logo=docker)](https://docs.docker.com)
@@ -40,13 +40,13 @@ sh -c "$(curl -fsSL https://github.com/bitcoin-tools/nodebuilder/raw/v1.7.1/node
4040
As mentioned above, start the script from the command line. Open Terminal and run:
4141

4242
```sh
43-
sh -c "$(curl -fsSL https://github.com/bitcoin-tools/nodebuilder/raw/v1.7.1/nodebuilder)"
43+
sh -c "$(curl -fsSL https://github.com/bitcoin-tools/nodebuilder/raw/v1.8.0/nodebuilder)"
4444
```
4545

4646
Or download the script to your local system, set permissions, and run it:
4747

4848
```sh
49-
wget https://github.com/bitcoin-tools/nodebuilder/raw/v1.7.1/nodebuilder
49+
wget https://github.com/bitcoin-tools/nodebuilder/raw/v1.8.0/nodebuilder
5050
chmod u+x nodebuilder
5151
./nodebuilder
5252
```

docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ FROM ubuntu:latest@sha256:8a37d68f4f73ebf3d4efafbcf66379bf3728902a8038616808f04e
77
ENV TERM=xterm
88

99
# Define the default version of nodebuilder or pass in a different version (eg master) as an argument.
10-
ARG NODEBUILDER_VERSION=v1.7.1
10+
ARG NODEBUILDER_VERSION=v1.8.0
1111

1212
# Define the nodebuilder URL.
1313
ARG NODEBUILDER_URL=https://github.com/bitcoin-tools/nodebuilder/raw/${NODEBUILDER_VERSION}/nodebuilder

docker/Dockerfile_alpine

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ FROM alpine:latest@sha256:0a4eaa0eecf5f8c050e5bba433f58c052be7587ee8af3e8b3910ef
77
ENV TERM=xterm
88

99
# Define the default version of nodebuilder or pass in a different version (eg master) as an argument.
10-
ARG NODEBUILDER_VERSION=v1.7.1
10+
ARG NODEBUILDER_VERSION=v1.8.0
1111

1212
# Define the nodebuilder URL.
1313
ARG NODEBUILDER_URL=https://github.com/bitcoin-tools/nodebuilder/raw/${NODEBUILDER_VERSION}/nodebuilder

docker/Dockerfile_amazonlinux

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ FROM amazonlinux:latest@sha256:171fe68a5c4114e48c19513c6341da2c6d693454f62edddaf
77
ENV TERM=xterm
88

99
# Define the default version of nodebuilder or pass in a different version (eg master) as an argument.
10-
ARG NODEBUILDER_VERSION=v1.7.1
10+
ARG NODEBUILDER_VERSION=v1.8.0
1111

1212
# Define the nodebuilder URL.
1313
ARG NODEBUILDER_URL=https://github.com/bitcoin-tools/nodebuilder/raw/${NODEBUILDER_VERSION}/nodebuilder

docker/Dockerfile_archlinux

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ FROM archlinux:latest@sha256:7dba90fa0171e5f23fd41500f15263b61bf4f95464f527d7152
77
ENV TERM=xterm
88

99
# Define the default version of nodebuilder or pass in a different version (eg master) as an argument.
10-
ARG NODEBUILDER_VERSION=v1.7.1
10+
ARG NODEBUILDER_VERSION=v1.8.0
1111

1212
# Define the nodebuilder URL.
1313
ARG NODEBUILDER_URL=https://github.com/bitcoin-tools/nodebuilder/raw/${NODEBUILDER_VERSION}/nodebuilder

docker/Dockerfile_clearlinux

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ FROM clearlinux:latest@sha256:7d71a15a6db4db67a23788b2e662720d96e3a7f1131f90b1c0
66
ENV TERM=xterm
77

88
# Define the default version of nodebuilder or pass in a different version (eg master) as an argument.
9-
ARG NODEBUILDER_VERSION=v1.7.1
9+
ARG NODEBUILDER_VERSION=v1.8.0
1010

1111
# Define the nodebuilder URL.
1212
ARG NODEBUILDER_URL=https://github.com/bitcoin-tools/nodebuilder/raw/${NODEBUILDER_VERSION}/nodebuilder

docker/Dockerfile_debian

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ FROM debian:stable-slim@sha256:382967fd7c35a0899ca3146b0b73d0791478fba2f71020c7a
77
ENV TERM=xterm
88

99
# Define the default version of nodebuilder or pass in a different version (eg master) as an argument.
10-
ARG NODEBUILDER_VERSION=v1.7.1
10+
ARG NODEBUILDER_VERSION=v1.8.0
1111

1212
# Define the nodebuilder URL.
1313
ARG NODEBUILDER_URL=https://github.com/bitcoin-tools/nodebuilder/raw/${NODEBUILDER_VERSION}/nodebuilder

docker/Dockerfile_fedora

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ FROM fedora:latest@sha256:b7b4b222c2a433e831c006a49a397009640cc30e097824410a35b1
77
ENV TERM=xterm
88

99
# Define the default version of nodebuilder or pass in a different version (eg master) as an argument.
10-
ARG NODEBUILDER_VERSION=v1.7.1
10+
ARG NODEBUILDER_VERSION=v1.8.0
1111

1212
# Define the nodebuilder URL.
1313
ARG NODEBUILDER_URL=https://github.com/bitcoin-tools/nodebuilder/raw/${NODEBUILDER_VERSION}/nodebuilder

docker/Dockerfile_gentoo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ FROM gentoo/stage3:latest@sha256:0e8a6979ed6a690701ed9090a14401f6f94e5c3ab88d503
77
ENV TERM=xterm
88

99
# Define the default version of nodebuilder or pass in a different version (eg master) as an argument.
10-
ARG NODEBUILDER_VERSION=v1.7.1
10+
ARG NODEBUILDER_VERSION=v1.8.0
1111

1212
# Define the nodebuilder URL.
1313
ARG NODEBUILDER_URL=https://github.com/bitcoin-tools/nodebuilder/raw/${NODEBUILDER_VERSION}/nodebuilder

0 commit comments

Comments
 (0)