Skip to content

Commit c8a05a4

Browse files
committed
Update for 1.3.2 release
1 parent 55ce004 commit c8a05a4

3 files changed

Lines changed: 19 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
## [1.3.2](https://github.com/nicklockwood/ShapeScript/releases/tag/1.3.2) (2021-09-13)
2+
3+
- Added stack overflow detection, preventing crashes due to infinite recursion
4+
- Added support for underscores in identifiers
5+
- Empty and single-element tuples are now permitted (useful in loops and data structures)
6+
- Looping over vector, size and color values is no longer permitted (only tuples and ranges)
7+
- Geometry `Hashable` implementation is now based on value rather than reference
8+
- Bumped Euclid to 0.5.12, which fixes the getters for `Rotation.pitch`/`yaw`/`roll`
9+
- Shape position/orientation/size are now read/write properties instead of setters
10+
- Wireframes are now rendered with polygons instead of lines on x86, for better quality
11+
- Added open/create document prompt when opening app
12+
- Improved Welcome view
13+
114
## [1.3.1](https://github.com/nicklockwood/ShapeScript/releases/tag/1.3.1) (2021-09-07)
215

316
- Disabled axes by default and added instructions for enabling to help

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.1",
3+
"version": "1.3.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.3.1"
13+
"tag": "1.3.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
@@ -717,7 +717,7 @@
717717
"$(inherited)",
718718
"@executable_path/../Frameworks",
719719
);
720-
MARKETING_VERSION = 1.3.1;
720+
MARKETING_VERSION = 1.3.2;
721721
PRODUCT_BUNDLE_IDENTIFIER = com.charcoaldesign.ShapeScriptViewer;
722722
PRODUCT_MODULE_NAME = Viewer;
723723
PRODUCT_NAME = "ShapeScript Viewer";
@@ -744,7 +744,7 @@
744744
"$(inherited)",
745745
"@executable_path/../Frameworks",
746746
);
747-
MARKETING_VERSION = 1.3.1;
747+
MARKETING_VERSION = 1.3.2;
748748
PRODUCT_BUNDLE_IDENTIFIER = com.charcoaldesign.ShapeScriptViewer;
749749
PRODUCT_MODULE_NAME = Viewer;
750750
PRODUCT_NAME = "ShapeScript Viewer";
@@ -897,7 +897,7 @@
897897
"@executable_path/../Frameworks",
898898
"@loader_path/Frameworks",
899899
);
900-
MARKETING_VERSION = 1.3.1;
900+
MARKETING_VERSION = 1.3.2;
901901
PRODUCT_BUNDLE_IDENTIFIER = com.charcoaldesign.ShapeScriptLib;
902902
PRODUCT_NAME = ShapeScript;
903903
SKIP_INSTALL = YES;
@@ -926,7 +926,7 @@
926926
"@executable_path/../Frameworks",
927927
"@loader_path/Frameworks",
928928
);
929-
MARKETING_VERSION = 1.3.1;
929+
MARKETING_VERSION = 1.3.2;
930930
PRODUCT_BUNDLE_IDENTIFIER = com.charcoaldesign.ShapeScriptLib;
931931
PRODUCT_NAME = ShapeScript;
932932
SKIP_INSTALL = YES;

0 commit comments

Comments
 (0)