Skip to content

Commit feeff0b

Browse files
committed
release v0.8.0 with fixes from @1ma
1 parent e6266f1 commit feeff0b

File tree

3 files changed

+7
-13
lines changed

3 files changed

+7
-13
lines changed

.github/workflows/release.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
make-release:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/create-release@latest
15+
- uses: actions/create-release@v1
1616
env:
1717
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1818
with:
@@ -29,13 +29,13 @@ jobs:
2929
env:
3030
CGO_ENABLED: 0
3131
steps:
32-
- uses: actions/checkout@latest
33-
- uses: wangyoucao577/go-release-action@latest
32+
- uses: actions/checkout@v4
33+
- uses: wangyoucao577/go-release-action@v1
3434
with:
3535
github_token: ${{ secrets.GITHUB_TOKEN }}
3636
goos: ${{ matrix.goos }}
3737
goarch: ${{ matrix.goarch }}
3838
goversion: "1.22"
3939
build_flags: -trimpath
40-
ldflags: -d -s -w
40+
ldflags: -s -w
4141
overwrite: true

README.md

+2-8
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,8 @@ apt install lightningd
3939
mkdir -p ~/.lightning/plugins
4040
echo 'disable-plugin=bcli' >> .lightning/config
4141
cd ~/.lightning/plugins
42-
wget https://github.com/nbd-wtf/trustedcoin/releases/download/v0.7.0/trustedcoin-v0.7.0-linux-amd64.tar.gz
43-
tar -xvf trustedcoin-v0.7.0-linux-amd64.tar.gz
42+
wget https://github.com/nbd-wtf/trustedcoin/releases/download/v0.8.0/trustedcoin-v0.8.0-linux-amd64.tar.gz
43+
tar -xvf trustedcoin-v0.8.0-linux-amd64.tar.gz
4444
cd
4545
lightningd
4646
```
47-
48-
## How to build
49-
50-
```
51-
go build
52-
```

main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"github.com/fiatjaf/lightningd-gjson-rpc/plugin"
99
)
1010

11-
const version = "0.7.1"
11+
const version = "0.8.0"
1212

1313
var (
1414
network string

0 commit comments

Comments
 (0)