Skip to content

Commit fd37f3a

Browse files
committed
Update for 1.2.2 release
1 parent 7c9bf66 commit fd37f3a

File tree

3 files changed

+14
-6
lines changed

3 files changed

+14
-6
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## [1.2.2](https://github.com/nicklockwood/ShapeScript/releases/tag/1.2.2) (2021-08-24)
2+
3+
- Blocks that accept child values can now be called without braces around them
4+
- Fixed confusing error messages caused by mesh commands being unavailable in certain scopes
5+
- Made script evaluation cancellable in case of infinite iteration or recursion
6+
- Fixed bug in Viewer app where view fails to refresh after loading geometry
7+
- Improved and simplified error handling logic
8+
19
## [1.2.1](https://github.com/nicklockwood/ShapeScript/releases/tag/1.2.1) (2021-08-19)
210

311
- Fixed crash when `for` loop end index < start index

ShapeScript.podspec.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ShapeScript",
3-
"version": "1.2.1",
3+
"version": "1.2.2",
44
"license": {
55
"type": "MIT",
66
"file": "LICENSE.md"
@@ -10,7 +10,7 @@
1010
"authors": "Nick Lockwood",
1111
"source": {
1212
"git": "https://github.com/nicklockwood/ShapeScript.git",
13-
"tag": "1.2.1"
13+
"tag": "1.2.2"
1414
},
1515
"source_files": ["ShapeScript", "LRUCache/Sources"],
1616
"requires_arc": true,

ShapeScript.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -707,7 +707,7 @@
707707
"$(inherited)",
708708
"@executable_path/../Frameworks",
709709
);
710-
MARKETING_VERSION = 1.2.1;
710+
MARKETING_VERSION = 1.2.2;
711711
PRODUCT_BUNDLE_IDENTIFIER = com.charcoaldesign.ShapeScriptViewer;
712712
PRODUCT_MODULE_NAME = Viewer;
713713
PRODUCT_NAME = "ShapeScript Viewer";
@@ -734,7 +734,7 @@
734734
"$(inherited)",
735735
"@executable_path/../Frameworks",
736736
);
737-
MARKETING_VERSION = 1.2.1;
737+
MARKETING_VERSION = 1.2.2;
738738
PRODUCT_BUNDLE_IDENTIFIER = com.charcoaldesign.ShapeScriptViewer;
739739
PRODUCT_MODULE_NAME = Viewer;
740740
PRODUCT_NAME = "ShapeScript Viewer";
@@ -886,7 +886,7 @@
886886
"@executable_path/../Frameworks",
887887
"@loader_path/Frameworks",
888888
);
889-
MARKETING_VERSION = 1.2.1;
889+
MARKETING_VERSION = 1.2.2;
890890
PRODUCT_BUNDLE_IDENTIFIER = com.charcoaldesign.ShapeScriptLib;
891891
PRODUCT_NAME = ShapeScript;
892892
SKIP_INSTALL = YES;
@@ -915,7 +915,7 @@
915915
"@executable_path/../Frameworks",
916916
"@loader_path/Frameworks",
917917
);
918-
MARKETING_VERSION = 1.2.1;
918+
MARKETING_VERSION = 1.2.2;
919919
PRODUCT_BUNDLE_IDENTIFIER = com.charcoaldesign.ShapeScriptLib;
920920
PRODUCT_NAME = ShapeScript;
921921
SKIP_INSTALL = YES;

0 commit comments

Comments
 (0)