diff --git a/docs/changelog.md b/docs/changelog.md index 8ba2ff8cbac..9ecc59378a9 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,5 +1,16 @@ # Changelog +## 1.84.0 - 2024-10-09 + +### 💎 Improvements + +- When running a no-view command with arguments, only clear the argument inputs instead of clearing the entire search bar (which brings the behaviour in line with other no-view commands) + +### 🐞 Fixes + +- Fixed a regression where `selectedItemId` wouldn’t be respected +- Fixed a typo in the extension template’s build script + ## 1.81.0 - 2024-08-13 ### ✨ New diff --git a/migrations/1.80.0/.gitkeep b/migrations/1.80.0/.gitkeep new file mode 100644 index 00000000000..e69de29bb2d diff --git a/migrations/1.81.0/.gitkeep b/migrations/1.81.0/.gitkeep new file mode 100644 index 00000000000..e69de29bb2d diff --git a/migrations/1.82.0/.gitkeep b/migrations/1.82.0/.gitkeep new file mode 100644 index 00000000000..e69de29bb2d diff --git a/migrations/1.83.0/.gitkeep b/migrations/1.83.0/.gitkeep new file mode 100644 index 00000000000..e69de29bb2d diff --git a/migrations/1.84.0/.gitkeep b/migrations/1.84.0/.gitkeep new file mode 100644 index 00000000000..e69de29bb2d diff --git a/migrations/package.json b/migrations/package.json index 694803dd99a..adc3f665912 100644 --- a/migrations/package.json +++ b/migrations/package.json @@ -1,6 +1,6 @@ { "name": "@raycast/migration", - "version": "1.79.0", + "version": "1.84.0", "description": "Tool to automate the migration to a newer version of the @raycast/api", "main": "index.js", "bin": "./bin/migrate.js",