From 1c9c79c87436cba542790597bff854e8b95ec714 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 3 Oct 2023 18:38:36 +0330 Subject: [PATCH 1/3] ci(deps): bump cloudflare/wrangler-action from 3.1.1 to 3.2.0 (#4) Bumps [cloudflare/wrangler-action](https://github.com/cloudflare/wrangler-action) from 3.1.1 to 3.2.0. - [Release notes](https://github.com/cloudflare/wrangler-action/releases) - [Changelog](https://github.com/cloudflare/wrangler-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/cloudflare/wrangler-action/compare/v3.1.1...v3.2.0) --- updated-dependencies: - dependency-name: cloudflare/wrangler-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 7330025..f6ec688 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -40,7 +40,7 @@ jobs: override: true - name: Deploy to Workers - uses: cloudflare/wrangler-action@v3.1.1 + uses: cloudflare/wrangler-action@v3.2.0 with: accountId: ${{ secrets.CF_ACCOUNT_ID }} apiToken: ${{ secrets.CF_API_TOKEN }} From e4c4abdfa565c96b84f7a275c4b5ddcf295722e7 Mon Sep 17 00:00:00 2001 From: Milad Nekofar Date: Tue, 3 Oct 2023 19:34:29 +0330 Subject: [PATCH 2/3] chore: force reinstallation of `worker-build` in `wrangler.toml` The wrangler.toml configuration file has been updated to force the reinstallation of 'worker-build' every time it's invoked. This ensures that the most recent version is always utilised which could help prevent errors caused by potential discrepancies between outdated and latest versions. --- wrangler.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wrangler.toml b/wrangler.toml index b700f54..d65e7de 100644 --- a/wrangler.toml +++ b/wrangler.toml @@ -3,7 +3,7 @@ main = "build/worker/shim.mjs" compatibility_date = "2023-03-22" [build] -command = "cargo install -q worker-build && worker-build --release" +command = "cargo install -q -f worker-build && worker-build --release" [vars] NOUNS_GRAPHQL_URL = "https://api.goldsky.com/api/public/project_cldf2o9pqagp43svvbk5u3kmo/subgraphs/nouns/0.2.0/gn" From 1e98d0e0f9a3ce9f2c4d0a37222ac82c86bae8e8 Mon Sep 17 00:00:00 2001 From: Milad Nekofar Date: Tue, 3 Oct 2023 19:50:54 +0330 Subject: [PATCH 3/3] chore(release): prepare for version 1.0.0-alpha.3 --- CHANGELOG.md | 6 ++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c767e70..ef7f54f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ All notable changes to this project will be documented in this file. +## [1.0.0-alpha.3] - 2023-10-03 + +### Miscellaneous Tasks + +- Force reinstallation of `worker-build` in `wrangler.toml` + ## [1.0.0-alpha.2] - 2023-10-03 ### Documentation diff --git a/Cargo.lock b/Cargo.lock index 334a017..1b62b2a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -603,7 +603,7 @@ checksum = "9cdc71e17332e86d2e1d38c1f99edcb6288ee11b815fb1a4b049eaa2114d369b" [[package]] name = "lilnouns-click" -version = "1.0.0-alpha.2" +version = "1.0.0-alpha.3" dependencies = [ "graphql_client", "html-escape", diff --git a/Cargo.toml b/Cargo.toml index 980f371..3245ea2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lilnouns-click" -version = "1.0.0-alpha.2" +version = "1.0.0-alpha.3" authors = ["Milad Nekofar "] edition = "2021" description = "A Nounish URL shortener for LilNouns DAO."