Skip to content

Commit 542933b

Browse files
committed
Update for 1.4.6 release
1 parent 12288b2 commit 542933b

File tree

6 files changed

+18
-9
lines changed

6 files changed

+18
-9
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## [1.4.6](https://github.com/nicklockwood/ShapeScript/releases/tag/1.4.6) (2022-04-08)
2+
3+
- Fixed `svgpath` command (broken in 1.4.5)
4+
- Fixed bug where axes were rendered in the wrong color
5+
- Watertight status is now displayed in object info panel
6+
- The `roundrect` command now works on Linux
7+
- Bumped LRUCache to version 1.0.3
8+
- Bumped Euclid to version 0.5.18
9+
110
## [1.4.5](https://github.com/nicklockwood/ShapeScript/releases/tag/1.4.5) (2022-03-07)
211

312
- Added support for setting per-vertex colors in a path

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.4.5",
3+
"version": "1.4.6",
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.4.5"
13+
"tag": "1.4.6"
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
@@ -749,7 +749,7 @@
749749
"$(inherited)",
750750
"@executable_path/../Frameworks",
751751
);
752-
MARKETING_VERSION = 1.4.5;
752+
MARKETING_VERSION = 1.4.6;
753753
PRODUCT_BUNDLE_IDENTIFIER = com.charcoaldesign.ShapeScriptViewer;
754754
PRODUCT_MODULE_NAME = Viewer;
755755
PRODUCT_NAME = "ShapeScript Viewer";
@@ -776,7 +776,7 @@
776776
"$(inherited)",
777777
"@executable_path/../Frameworks",
778778
);
779-
MARKETING_VERSION = 1.4.5;
779+
MARKETING_VERSION = 1.4.6;
780780
PRODUCT_BUNDLE_IDENTIFIER = com.charcoaldesign.ShapeScriptViewer;
781781
PRODUCT_MODULE_NAME = Viewer;
782782
PRODUCT_NAME = "ShapeScript Viewer";
@@ -933,7 +933,7 @@
933933
"@executable_path/../Frameworks",
934934
"@loader_path/Frameworks",
935935
);
936-
MARKETING_VERSION = 1.4.5;
936+
MARKETING_VERSION = 1.4.6;
937937
PRODUCT_BUNDLE_IDENTIFIER = com.charcoaldesign.ShapeScriptLib;
938938
PRODUCT_NAME = ShapeScript;
939939
SKIP_INSTALL = YES;
@@ -962,7 +962,7 @@
962962
"@executable_path/../Frameworks",
963963
"@loader_path/Frameworks",
964964
);
965-
MARKETING_VERSION = 1.4.5;
965+
MARKETING_VERSION = 1.4.6;
966966
PRODUCT_BUNDLE_IDENTIFIER = com.charcoaldesign.ShapeScriptLib;
967967
PRODUCT_NAME = ShapeScript;
968968
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 = "1320"
3+
LastUpgradeVersion = "1330"
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 = "1320"
3+
LastUpgradeVersion = "1330"
44
version = "1.3">
55
<BuildAction
66
parallelizeBuildables = "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.4.5"
14+
public let version = "1.4.6"
1515

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

0 commit comments

Comments
 (0)