From fafa6fcb787606df1916e931175b68fc700e9a6b Mon Sep 17 00:00:00 2001
From: ankit-tailor <tailorankit3345@gmail.com>
Date: Fri, 1 Dec 2023 14:46:58 +0530
Subject: [PATCH 1/2] v1.0.2

---
 packages/babel-plugin-styled-resolver/CHANGELOG.md | 6 ++++++
 packages/babel-plugin-styled-resolver/package.json | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/packages/babel-plugin-styled-resolver/CHANGELOG.md b/packages/babel-plugin-styled-resolver/CHANGELOG.md
index 12b87d55..b729b841 100644
--- a/packages/babel-plugin-styled-resolver/CHANGELOG.md
+++ b/packages/babel-plugin-styled-resolver/CHANGELOG.md
@@ -1,5 +1,11 @@
 # @gluestack-style/babel-plugin-styled-resolver
 
+## 1.0.2
+
+### Patch Changes
+
+- Added dynamic config resolution [PR](https://github.com/gluestack/gluestack-style/pull/550)
+
 ## 1.0.1
 
 ### Features
diff --git a/packages/babel-plugin-styled-resolver/package.json b/packages/babel-plugin-styled-resolver/package.json
index a7fbd3ab..19a28b6e 100644
--- a/packages/babel-plugin-styled-resolver/package.json
+++ b/packages/babel-plugin-styled-resolver/package.json
@@ -1,6 +1,6 @@
 {
   "name": "@gluestack-style/babel-plugin-styled-resolver",
-  "version": "1.0.2-alpha.1",
+  "version": "1.0.2",
   "description": "A gluestack-style babel plugin that transpiles your styled function calls and resolves the component styling in build time.",
   "keywords": [
     "css-in-js",

From 79fe41a1b1ec12d45f55db08198cf5fcc5699828 Mon Sep 17 00:00:00 2001
From: ankit-tailor <tailorankit3345@gmail.com>
Date: Fri, 1 Dec 2023 14:53:40 +0530
Subject: [PATCH 2/2] fix: node v18.x

---
 .github/workflows/release.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 18afc7e4..ffe7667f 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -15,10 +15,10 @@ jobs:
       - name: Checkout Repo
         uses: actions/checkout@v3
 
-      - name: Setup Node.js 16.x
+      - name: Setup Node.js 18.x
         uses: actions/setup-node@v3
         with:
-          node-version: 16.x
+          node-version: 18.x
 
       - name: Install Dependencies
         run: |