From 4c476d94970649a1de34414914a06c61ff0ed64c Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
 <41898282+github-actions[bot]@users.noreply.github.com>
Date: Wed, 25 Sep 2024 09:08:07 +0200
Subject: [PATCH] Version Packages (#3143)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
---
 .changeset/purple-chairs-learn.md             | 5 -----
 .changeset/spotty-games-sin.md                | 5 -----
 .changeset/warm-buses-bathe.md                | 5 -----
 .changeset/yellow-doors-fail.md               | 5 -----
 packages/tokens-studio-for-figma/CHANGELOG.md | 9 +++++++++
 packages/tokens-studio-for-figma/package.json | 2 +-
 6 files changed, 10 insertions(+), 21 deletions(-)
 delete mode 100644 .changeset/purple-chairs-learn.md
 delete mode 100644 .changeset/spotty-games-sin.md
 delete mode 100644 .changeset/warm-buses-bathe.md
 delete mode 100644 .changeset/yellow-doors-fail.md

diff --git a/.changeset/purple-chairs-learn.md b/.changeset/purple-chairs-learn.md
deleted file mode 100644
index a490fc93d..000000000
--- a/.changeset/purple-chairs-learn.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-"@tokens-studio/figma-plugin": patch
----
-
-Fixed an issue introduced in 2.1.0 that sometimes caused the order of token sets to not be as expected, meaning sets that acted as overrides didn't correctly get calculated.
diff --git a/.changeset/spotty-games-sin.md b/.changeset/spotty-games-sin.md
deleted file mode 100644
index eda7cd22a..000000000
--- a/.changeset/spotty-games-sin.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-"@tokens-studio/figma-plugin": patch
----
-
-Resolved an issue with Bitbucket sync where deleted sets were still being reflected in the tokens repository.
diff --git a/.changeset/warm-buses-bathe.md b/.changeset/warm-buses-bathe.md
deleted file mode 100644
index 0f3bf044e..000000000
--- a/.changeset/warm-buses-bathe.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-"@tokens-studio/figma-plugin": patch
----
-
-Fixed a bug where applying themes using "Prefix styles with active theme name" didn't correctly apply the right styles.
diff --git a/.changeset/yellow-doors-fail.md b/.changeset/yellow-doors-fail.md
deleted file mode 100644
index b8da2d61a..000000000
--- a/.changeset/yellow-doors-fail.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-"@tokens-studio/figma-plugin": patch
----
-
-Fixed an issue with "zombie variables". Basically, even though a Figma file shows 0 variables, Figma's plugin API will sometimes tell us there's variables existing - probably ones that existed in the past but should be deleted - Figma seems to report those as existing still. This led to issues around applying and referencing variables where we'd point to those zombies. We now correctly check if the variable's collection still exist, and only then use those as references.
diff --git a/packages/tokens-studio-for-figma/CHANGELOG.md b/packages/tokens-studio-for-figma/CHANGELOG.md
index 9d4bbe494..8a68a21dc 100644
--- a/packages/tokens-studio-for-figma/CHANGELOG.md
+++ b/packages/tokens-studio-for-figma/CHANGELOG.md
@@ -1,5 +1,14 @@
 # @tokens-studio/figma-plugin
 
+## 2.1.1
+
+### Patch Changes
+
+- f6398c7a: Fixed an issue introduced in 2.1.0 that sometimes caused the order of token sets to not be as expected, meaning sets that acted as overrides didn't correctly get calculated.
+- fe94d6a3: Resolved an issue with Bitbucket sync where deleted sets were still being reflected in the tokens repository.
+- bf8c185a: Fixed a bug where applying themes using "Prefix styles with active theme name" didn't correctly apply the right styles.
+- cddfb5ba: Fixed an issue with "zombie variables". Basically, even though a Figma file shows 0 variables, Figma's plugin API will sometimes tell us there's variables existing - probably ones that existed in the past but should be deleted - Figma seems to report those as existing still. This led to issues around applying and referencing variables where we'd point to those zombies. We now correctly check if the variable's collection still exist, and only then use those as references.
+
 ## 2.1.0
 
 ### Minor Changes
diff --git a/packages/tokens-studio-for-figma/package.json b/packages/tokens-studio-for-figma/package.json
index a69125483..f3b572170 100644
--- a/packages/tokens-studio-for-figma/package.json
+++ b/packages/tokens-studio-for-figma/package.json
@@ -1,6 +1,6 @@
 {
   "name": "@tokens-studio/figma-plugin",
-  "version": "2.1.0",
+  "version": "2.1.1",
   "description": "Tokens Studio plugin for Figma",
   "license": "MIT",
   "private": true,