Skip to content

Commit f08e9c8

Browse files
committed
Update for 1.5.2 release
1 parent 87c2440 commit f08e9c8

File tree

4 files changed

+14
-7
lines changed

4 files changed

+14
-7
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## [1.5.2](https://github.com/nicklockwood/ShapeScript/releases/tag/1.5.2) (2022-05-28)
2+
3+
- Fixed bug where path lines were drawn too thin for large models
4+
- Improved error messaging for invalid use of option
5+
- Fixed suggestions for misspelled commands
6+
- Bumped Euclid to version 0.5.21
7+
18
## [1.5.1](https://github.com/nicklockwood/ShapeScript/releases/tag/1.5.1) (2022-05-07)
29

310
- Add implicit `detail/smoothing`, `color/texture`, `position/orientation/size` and `font` options to custom blocks

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.1",
3+
"version": "1.5.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.5.1"
13+
"tag": "1.5.2"
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
@@ -850,7 +850,7 @@
850850
"$(inherited)",
851851
"@executable_path/../Frameworks",
852852
);
853-
MARKETING_VERSION = 1.5.1;
853+
MARKETING_VERSION = 1.5.2;
854854
PRODUCT_BUNDLE_IDENTIFIER = com.charcoaldesign.ShapeScriptViewer;
855855
PRODUCT_MODULE_NAME = Viewer;
856856
PRODUCT_NAME = "ShapeScript Viewer";
@@ -877,7 +877,7 @@
877877
"$(inherited)",
878878
"@executable_path/../Frameworks",
879879
);
880-
MARKETING_VERSION = 1.5.1;
880+
MARKETING_VERSION = 1.5.2;
881881
PRODUCT_BUNDLE_IDENTIFIER = com.charcoaldesign.ShapeScriptViewer;
882882
PRODUCT_MODULE_NAME = Viewer;
883883
PRODUCT_NAME = "ShapeScript Viewer";
@@ -1034,7 +1034,7 @@
10341034
"@executable_path/../Frameworks",
10351035
"@loader_path/Frameworks",
10361036
);
1037-
MARKETING_VERSION = 1.5.1;
1037+
MARKETING_VERSION = 1.5.2;
10381038
PRODUCT_BUNDLE_IDENTIFIER = com.charcoaldesign.ShapeScriptLib;
10391039
PRODUCT_NAME = ShapeScript;
10401040
SKIP_INSTALL = YES;
@@ -1064,7 +1064,7 @@
10641064
"@executable_path/../Frameworks",
10651065
"@loader_path/Frameworks",
10661066
);
1067-
MARKETING_VERSION = 1.5.1;
1067+
MARKETING_VERSION = 1.5.2;
10681068
PRODUCT_BUNDLE_IDENTIFIER = com.charcoaldesign.ShapeScriptLib;
10691069
PRODUCT_NAME = ShapeScript;
10701070
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.1"
14+
public let version = "1.5.2"
1515

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

0 commit comments

Comments
 (0)