From eeb1504e209addb2e4552b2b12b728f9bb78170e Mon Sep 17 00:00:00 2001 From: Shane da Silva Date: Fri, 12 Jul 2024 10:35:38 -0700 Subject: [PATCH] fix(shuttle): Fix broken build for 0.5.2 (#2169) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Why is this change needed? We didn't build the package correctly. ## Merge Checklist - [x] PR title adheres to the [conventional commits](https://www.conventionalcommits.org/en/v1.0.0/) standard - [x] PR has a [changeset](https://github.com/farcasterxyz/hub-monorepo/blob/main/CONTRIBUTING.md#35-adding-changesets) - [ ] PR has been tagged with a change label(s) (i.e. documentation, feature, bugfix, or chore) - [ ] PR includes [documentation](https://github.com/farcasterxyz/hub-monorepo/blob/main/CONTRIBUTING.md#32-writing-docs) if necessary. --- ## PR-Codex overview The focus of this PR is to update the version of the `@farcaster/shuttle` package from 0.5.2 to 0.5.3. ### Detailed summary - Updated package version to 0.5.3 in `package.json` - Added entry for version 0.5.3 in `CHANGELOG.md` > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` --- packages/shuttle/CHANGELOG.md | 6 ++++++ packages/shuttle/package.json | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/packages/shuttle/CHANGELOG.md b/packages/shuttle/CHANGELOG.md index b51606ff21..aa863b09fa 100644 --- a/packages/shuttle/CHANGELOG.md +++ b/packages/shuttle/CHANGELOG.md @@ -1,5 +1,11 @@ # @farcaster/hub-shuttle +## 0.5.3 + +### Patch Changes + +- 57b9c6ab: Re-build package + ## 0.5.2 ### Patch Changes diff --git a/packages/shuttle/package.json b/packages/shuttle/package.json index f2b0b19bfc..d3dea95eeb 100644 --- a/packages/shuttle/package.json +++ b/packages/shuttle/package.json @@ -1,6 +1,6 @@ { "name": "@farcaster/shuttle", - "version": "0.5.2", + "version": "0.5.3", "main": "./dist/index.js", "module": "./dist/index.mjs", "types": "./dist/index.d.ts",