Skip to content

Commit 001f9d7

Browse files
committed
Update for 1.3.7 release
1 parent 1fa88f5 commit 001f9d7

10 files changed

Lines changed: 24 additions & 13 deletions

File tree

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
## [1.3.7](https://github.com/nicklockwood/ShapeScript/releases/tag/1.3.7) (2021-09-26)
2+
3+
- Added debug command for highlighting invisible geometry
4+
- Custom blocks can now return any value type, not just meshes or paths
5+
- Infix expressions are now handled correctly when used in a statement position
6+
- Improved type mismatch error messages for block parameters
7+
- String values are no longer nullable and empty strings are handled more correctly
8+
- Nested command calls without parentheses are now handled correctly
9+
- Improved type reporting for single-value tuples in error messages
10+
- Updated print behavior to better match text interpolation
11+
112
## [1.3.6](https://github.com/nicklockwood/ShapeScript/releases/tag/1.3.6) (2021-09-21)
213

314
- Added text interpolation, allowing text strings to be constructed dynamically

Euclid/Euclid.xcodeproj/project.pbxproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@
349349
isa = PBXProject;
350350
attributes = {
351351
LastSwiftUpdateCheck = 1010;
352-
LastUpgradeCheck = 1250;
352+
LastUpgradeCheck = 1300;
353353
ORGANIZATIONNAME = "Nick Lockwood";
354354
TargetAttributes = {
355355
016FAB2821BFE78100AF60DC = {

Euclid/Euclid.xcodeproj/xcshareddata/xcschemes/Euclid.xcscheme

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<Scheme
3-
LastUpgradeVersion = "1250"
3+
LastUpgradeVersion = "1300"
44
version = "1.3">
55
<BuildAction
66
parallelizeBuildables = "YES"

Euclid/Euclid.xcodeproj/xcshareddata/xcschemes/Example.xcscheme

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<Scheme
3-
LastUpgradeVersion = "1250"
3+
LastUpgradeVersion = "1300"
44
version = "1.3">
55
<BuildAction
66
parallelizeBuildables = "YES"

LRUCache/LRUCache.xcodeproj/project.pbxproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@
157157
isa = PBXProject;
158158
attributes = {
159159
LastSwiftUpdateCheck = 1010;
160-
LastUpgradeCheck = 1250;
160+
LastUpgradeCheck = 1300;
161161
ORGANIZATIONNAME = "Nick Lockwood";
162162
TargetAttributes = {
163163
016FAB2821BFE78100AF60DC = {

LRUCache/LRUCache.xcodeproj/xcshareddata/xcschemes/LRUCache.xcscheme

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<Scheme
3-
LastUpgradeVersion = "1250"
3+
LastUpgradeVersion = "1300"
44
version = "1.3">
55
<BuildAction
66
parallelizeBuildables = "YES"

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.3.6",
3+
"version": "1.3.7",
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.3.6"
13+
"tag": "1.3.7"
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
@@ -721,7 +721,7 @@
721721
"$(inherited)",
722722
"@executable_path/../Frameworks",
723723
);
724-
MARKETING_VERSION = 1.3.6;
724+
MARKETING_VERSION = 1.3.7;
725725
PRODUCT_BUNDLE_IDENTIFIER = com.charcoaldesign.ShapeScriptViewer;
726726
PRODUCT_MODULE_NAME = Viewer;
727727
PRODUCT_NAME = "ShapeScript Viewer";
@@ -748,7 +748,7 @@
748748
"$(inherited)",
749749
"@executable_path/../Frameworks",
750750
);
751-
MARKETING_VERSION = 1.3.6;
751+
MARKETING_VERSION = 1.3.7;
752752
PRODUCT_BUNDLE_IDENTIFIER = com.charcoaldesign.ShapeScriptViewer;
753753
PRODUCT_MODULE_NAME = Viewer;
754754
PRODUCT_NAME = "ShapeScript Viewer";
@@ -901,7 +901,7 @@
901901
"@executable_path/../Frameworks",
902902
"@loader_path/Frameworks",
903903
);
904-
MARKETING_VERSION = 1.3.6;
904+
MARKETING_VERSION = 1.3.7;
905905
PRODUCT_BUNDLE_IDENTIFIER = com.charcoaldesign.ShapeScriptLib;
906906
PRODUCT_NAME = ShapeScript;
907907
SKIP_INSTALL = YES;
@@ -930,7 +930,7 @@
930930
"@executable_path/../Frameworks",
931931
"@loader_path/Frameworks",
932932
);
933-
MARKETING_VERSION = 1.3.6;
933+
MARKETING_VERSION = 1.3.7;
934934
PRODUCT_BUNDLE_IDENTIFIER = com.charcoaldesign.ShapeScriptLib;
935935
PRODUCT_NAME = ShapeScript;
936936
SKIP_INSTALL = YES;

ShapeScript.xcodeproj/xcshareddata/xcschemes/ShapeScript Lib.xcscheme

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<Scheme
3-
LastUpgradeVersion = "1250"
3+
LastUpgradeVersion = "1300"
44
version = "1.3">
55
<BuildAction
66
parallelizeBuildables = "YES"

ShapeScript.xcodeproj/xcshareddata/xcschemes/ShapeScript Viewer.xcscheme

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<Scheme
3-
LastUpgradeVersion = "1250"
3+
LastUpgradeVersion = "1300"
44
version = "1.3">
55
<BuildAction
66
parallelizeBuildables = "YES"

0 commit comments

Comments
 (0)