Skip to content

Commit ffb1785

Browse files
committed
Update for 1.5.3 release
1 parent 45c8dc4 commit ffb1785

File tree

4 files changed

+16
-7
lines changed

4 files changed

+16
-7
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## [1.5.3](https://github.com/nicklockwood/ShapeScript/releases/tag/1.5.3) (2022-07-03)
2+
3+
- The `loft` command now supports joining shapes with unequal numbers of sides or points
4+
- The `fill`, `lathe` and `extrude` commands now more reliably produce watertight output
5+
- Fixed incorrect polygon/triangle counts in model info
6+
- Fixed line numbers in selected object info
7+
- Bumped Euclid to version 0.5.25
8+
- Fixed some flaky tests
9+
110
## [1.5.2](https://github.com/nicklockwood/ShapeScript/releases/tag/1.5.2) (2022-05-28)
211

312
- Fixed bug where path lines were drawn too thin for large models

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

ShapeScript.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -854,7 +854,7 @@
854854
"$(inherited)",
855855
"@executable_path/../Frameworks",
856856
);
857-
MARKETING_VERSION = 1.5.2;
857+
MARKETING_VERSION = 1.5.3;
858858
PRODUCT_BUNDLE_IDENTIFIER = com.charcoaldesign.ShapeScriptViewer;
859859
PRODUCT_MODULE_NAME = Viewer;
860860
PRODUCT_NAME = "ShapeScript Viewer";
@@ -881,7 +881,7 @@
881881
"$(inherited)",
882882
"@executable_path/../Frameworks",
883883
);
884-
MARKETING_VERSION = 1.5.2;
884+
MARKETING_VERSION = 1.5.3;
885885
PRODUCT_BUNDLE_IDENTIFIER = com.charcoaldesign.ShapeScriptViewer;
886886
PRODUCT_MODULE_NAME = Viewer;
887887
PRODUCT_NAME = "ShapeScript Viewer";
@@ -1038,7 +1038,7 @@
10381038
"@executable_path/../Frameworks",
10391039
"@loader_path/Frameworks",
10401040
);
1041-
MARKETING_VERSION = 1.5.2;
1041+
MARKETING_VERSION = 1.5.3;
10421042
PRODUCT_BUNDLE_IDENTIFIER = com.charcoaldesign.ShapeScriptLib;
10431043
PRODUCT_NAME = ShapeScript;
10441044
SKIP_INSTALL = YES;
@@ -1068,7 +1068,7 @@
10681068
"@executable_path/../Frameworks",
10691069
"@loader_path/Frameworks",
10701070
);
1071-
MARKETING_VERSION = 1.5.2;
1071+
MARKETING_VERSION = 1.5.3;
10721072
PRODUCT_BUNDLE_IDENTIFIER = com.charcoaldesign.ShapeScriptLib;
10731073
PRODUCT_NAME = ShapeScript;
10741074
SKIP_INSTALL = YES;

ShapeScript/Interpreter.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import Foundation
1111

1212
// MARK: Public interface
1313

14-
public let version = "1.5.2"
14+
public let version = "1.5.3"
1515

1616
public protocol EvaluationDelegate: AnyObject {
1717
func resolveURL(for path: String) -> URL

0 commit comments

Comments
 (0)