Skip to content

Commit 427cee0

Browse files
committed
Update for 1.2.3 release
1 parent 326d9ee commit 427cee0

3 files changed

Lines changed: 15 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## [1.2.3](https://github.com/nicklockwood/ShapeScript/releases/tag/1.2.3) (2021-08-24)
2+
3+
- Enabled parenthesized expressions to span multiple lines
4+
- Improved error message when assigning multiple values to single type
5+
- Fixed assigning color literal value to background without parens
6+
- Added Color initializers
7+
- Added SceneViewController.snapshot() method
8+
19
## [1.2.2](https://github.com/nicklockwood/ShapeScript/releases/tag/1.2.2) (2021-08-24)
210

311
- Blocks that accept child values can now be called without braces around them

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.2",
3+
"version": "1.2.3",
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.2"
13+
"tag": "1.2.3"
1414
},
1515
"source_files": ["ShapeScript", "LRUCache/Sources"],
1616
"requires_arc": true,

ShapeScript.xcodeproj/project.pbxproj

Lines changed: 5 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.2;
710+
MARKETING_VERSION = 1.2.3;
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.2;
737+
MARKETING_VERSION = 1.2.3;
738738
PRODUCT_BUNDLE_IDENTIFIER = com.charcoaldesign.ShapeScriptViewer;
739739
PRODUCT_MODULE_NAME = Viewer;
740740
PRODUCT_NAME = "ShapeScript Viewer";
@@ -803,6 +803,7 @@
803803
ONLY_ACTIVE_ARCH = YES;
804804
SDKROOT = macosx;
805805
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
806+
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
806807
VERSIONING_SYSTEM = "apple-generic";
807808
VERSION_INFO_PREFIX = "";
808809
};
@@ -886,7 +887,7 @@
886887
"@executable_path/../Frameworks",
887888
"@loader_path/Frameworks",
888889
);
889-
MARKETING_VERSION = 1.2.2;
890+
MARKETING_VERSION = 1.2.3;
890891
PRODUCT_BUNDLE_IDENTIFIER = com.charcoaldesign.ShapeScriptLib;
891892
PRODUCT_NAME = ShapeScript;
892893
SKIP_INSTALL = YES;
@@ -915,7 +916,7 @@
915916
"@executable_path/../Frameworks",
916917
"@loader_path/Frameworks",
917918
);
918-
MARKETING_VERSION = 1.2.2;
919+
MARKETING_VERSION = 1.2.3;
919920
PRODUCT_BUNDLE_IDENTIFIER = com.charcoaldesign.ShapeScriptLib;
920921
PRODUCT_NAME = ShapeScript;
921922
SKIP_INSTALL = YES;

0 commit comments

Comments
 (0)