From 470c94fed103a1c1d15226884589629b52823703 Mon Sep 17 00:00:00 2001
From: "p.strelchenko"
Date: Tue, 12 May 2026 18:15:42 +0500
Subject: [PATCH 1/3] Release figmagen-2.0.0-beta.27
---
Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
index d898cad..c40cd03 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
PREFIX?=/usr/local
PRODUCT_NAME=figmagen
-PRODUCT_VERSION=2.0.0-beta.26
+PRODUCT_VERSION=2.0.0-beta.27
TEMPLATES_NAME=Templates
README_NAME=README.md
LICENSE_NAME=LICENSE
From 22127f55cddbb094105683b66aa23f44bd7f7f53 Mon Sep 17 00:00:00 2001
From: "p.strelchenko"
Date: Tue, 12 May 2026 18:31:21 +0500
Subject: [PATCH 2/3] =?UTF-8?q?=D0=A2=D1=80=D0=B8=D0=B3=D0=B3=D0=B5=D1=80?=
=?UTF-8?q?=20=D1=81=D0=B1=D0=BE=D1=80=D0=BA=D0=B8?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
README.md | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/README.md b/README.md
index 8fcc9be..80c09cb 100755
--- a/README.md
+++ b/README.md
@@ -9,6 +9,7 @@
FigmaGen is a command line tool for exporting resources and generating code from your [Figma](http://figma.com/) files.
Currently, FigmaGen supports the following entities:
+
- ✅ Color styles
- ✅ Text styles
- ✅ Shadow styles
@@ -43,7 +44,7 @@ Currently, FigmaGen supports the following entities:
### CocoaPods
To install FigmaGen using [CocoaPods](http://cocoapods.org) dependency manager, add this line to your `Podfile`:
```ruby
-pod 'FigmaGen', '~> 2.0.0-beta.26'
+pod 'FigmaGen', '~> 2.0.0-beta.27'
```
Then run this command:
@@ -73,7 +74,7 @@ $ brew install hhru/tap/figmagen
For [Mint](https://github.com/yonaskolb/mint) package manager installation, run:
```sh
-$ mint install hhru/FigmaGen@2.0.0-beta.26
+$ mint install hhru/FigmaGen@2.0.0-beta.27
```
### ZIP archive
From d4ba4fda1e9ee0a2b84e7c9a0db6cbd5131f0340 Mon Sep 17 00:00:00 2001
From: "p.strelchenko"
Date: Wed, 13 May 2026 18:59:10 +0500
Subject: [PATCH 3/3] =?UTF-8?q?=D0=9E=D1=82=D0=BA=D0=BB=D1=8E=D1=87=D0=B0?=
=?UTF-8?q?=D0=B5=D1=82=20=D0=B3=D0=B5=D0=BD=D0=B5=D1=80=D0=B0=D1=86=D0=B8?=
=?UTF-8?q?=D1=8E=20=D1=87=D0=B5=D1=80=D0=B5=D0=B7=20API=20=D0=BD=D0=B0=20?=
=?UTF-8?q?CI?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.github/workflows/ci.yml | 2 ++
Makefile | 4 +++-
2 files changed, 5 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 2bf9a55..ae83e31 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -39,6 +39,8 @@ jobs:
- name: Test
run: make test
- name: Test Demo
+ env:
+ SKIP_FIGMAGEN_GENERATION: YES
run: make test_demo
- name: Danger
continue-on-error: true
diff --git a/Makefile b/Makefile
index c40cd03..932effd 100644
--- a/Makefile
+++ b/Makefile
@@ -54,7 +54,9 @@ test_demo: build
set -euo pipefail; \
cd $(DEMO_PATH); \
- ./figmagen generate; \
+ if [ "$${SKIP_FIGMAGEN_GENERATION:-}" != "YES" ]; then \
+ ./figmagen generate; \
+ fi; \
bundle exec pod install; \
xcodebuild clean build test -workspace "$(DEMO_WORKSPACE)" -scheme "$(DEMO_TEST_SCHEME)" -destination "$(DEMO_TEST_DESTINATION)" | XCPRETTY_JSON_FILE_OUTPUT="../$(DEMO_TEST_LOG_PATH)" xcpretty -f `xcpretty-json-formatter`