From 4f59ef4e8520cc5a8f7d1a5a08e01b45bde98d78 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jun=20Xiang=20=28=E3=82=AB=E3=82=A8=E3=83=87=29?= Date: Sat, 11 Jan 2025 00:07:49 +0800 Subject: [PATCH] chore: bump v0.7.5 (#178) Signed-off-by: AlexNg --- pkg/version/version.go | 2 +- www/docs/configuration/introduction.md | 4 ++-- www/docs/install.md | 10 +++++----- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/pkg/version/version.go b/pkg/version/version.go index 32388e4..1129ffd 100644 --- a/pkg/version/version.go +++ b/pkg/version/version.go @@ -1,4 +1,4 @@ package version // The current app version -const Version = "0.7.3" +const Version = "0.7.5" diff --git a/www/docs/configuration/introduction.md b/www/docs/configuration/introduction.md index 230aad0..514d074 100644 --- a/www/docs/configuration/introduction.md +++ b/www/docs/configuration/introduction.md @@ -20,10 +20,10 @@ for better editor support. https://waku.ngjx.org/static/schema.json ``` -Or you can pin a specific version like `v0.7.3`: +Or you can pin a specific version like `v0.7.5`: ```text -https://raw.githubusercontent.com/caffeine-addictt/waku/v0.7.3/www/docs/static/schema.json +https://raw.githubusercontent.com/caffeine-addictt/waku/v0.7.5/www/docs/static/schema.json ``` Simply add the `$schema` property to your `configuration` file: diff --git a/www/docs/install.md b/www/docs/install.md index 8b8e53b..bc5ef75 100644 --- a/www/docs/install.md +++ b/www/docs/install.md @@ -102,17 +102,17 @@ All artifacts are checksummed, and the checksum file is signed with [cosign][]. and `checksums.txt.sig` files from the [releases][] page. ```sh - curl -O 'https://github.com/caffeine-addictt/waku/releases/download/v0.7.3/checksums.txt' + curl -O 'https://github.com/caffeine-addictt/waku/releases/download/v0.7.5/checksums.txt' ``` 1. Verify checksums signature: ```bash cosign verify-blob \ - --certificate-identity 'https://github.com/caffeine-addictt/waku/.github/workflows/release.yml@refs/tags/v0.7.3' \ + --certificate-identity 'https://github.com/caffeine-addictt/waku/.github/workflows/release.yml@refs/tags/v0.7.5' \ --certificate-oidc-issuer 'https://token.actions.githubusercontent.com' \ - --cert 'https://github.com/caffeine-addictt/waku/releases/download/v0.7.3/checksums.txt.pem' \ - --signature 'https://github.com/caffeine-addictt/waku/releases/download/v0.7.3/checksums.txt.sig' \ + --cert 'https://github.com/caffeine-addictt/waku/releases/download/v0.7.5/checksums.txt.pem' \ + --signature 'https://github.com/caffeine-addictt/waku/releases/download/v0.7.5/checksums.txt.sig' \ ./checksums.txt ``` @@ -130,7 +130,7 @@ Verify the signature: ```sh cosign verify \ - --certificate-identity 'https://github.com/caffeine-addictt/waku/.github/workflows/release.yml@refs/tags/v0.7.3' \ + --certificate-identity 'https://github.com/caffeine-addictt/waku/.github/workflows/release.yml@refs/tags/v0.7.5' \ --certificate-oidc-issuer 'https://token.actions.githubusercontent.com' \ caffeinec/waku ```