Skip to content

Commit 7e730ed

Browse files
committed
Update for 1.3.3 release
1 parent ee41a94 commit 7e730ed

File tree

5 files changed

+27
-9
lines changed

5 files changed

+27
-9
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## [1.3.3](https://github.com/nicklockwood/ShapeScript/releases/tag/1.3.3) (2021-09-14)
2+
3+
- Fixed crash when font is set to an empty string
4+
- Fixed incorrect suggestion of `option` for typos in contexts where it isn't available
5+
- Print logging in a long/infinite loop no longer freezes UI
6+
- Help index is now generated automatically
7+
- Improved help for colors and text
8+
19
## [1.3.2](https://github.com/nicklockwood/ShapeScript/releases/tag/1.3.2) (2021-09-13)
210

311
- Added stack overflow detection, preventing crashes due to infinite recursion

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,19 +30,19 @@ ShapeScript is packaged as a dynamic framework, which itself depends on the [Euc
3030
To install the ShapeScript framework using CocoaPods, add the following to your Podfile:
3131

3232
```ruby
33-
pod 'ShapeScript', '~> 1.2'
33+
pod 'ShapeScript', '~> 1.3'
3434
```
3535

3636
To install using Carthage, add this to your Cartfile:
3737

3838
```ogdl
39-
github "nicklockwood/ShapeScript" ~> 1.2
39+
github "nicklockwood/ShapeScript" ~> 1.3
4040
```
4141

4242
To install using Swift Package Manager, add this to the `dependencies:` section in your Package.swift file:
4343

4444
```swift
45-
.package(url: "https://github.com/nicklockwood/ShapeScript.git", .upToNextMinor(from: "1.2.0")),
45+
.package(url: "https://github.com/nicklockwood/ShapeScript.git", .upToNextMinor(from: "1.3.0")),
4646
```
4747

4848
The repository also includes the ShapeScript Viewer application, a cut-down version of the ShapeScript app available on the [Mac App Store](https://apps.apple.com/app/id1441135869). It is not currently possible to install or run this app using CocoaPods, Carthage or Swift Package Manager, however you can run it by opening the included Xcode project and selecting the `ShapeScript Viewer` scheme.

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.2",
3+
"version": "1.3.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.3.2"
13+
"tag": "1.3.3"
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.2;
724+
MARKETING_VERSION = 1.3.3;
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.2;
751+
MARKETING_VERSION = 1.3.3;
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.2;
904+
MARKETING_VERSION = 1.3.3;
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.2;
933+
MARKETING_VERSION = 1.3.3;
934934
PRODUCT_BUNDLE_IDENTIFIER = com.charcoaldesign.ShapeScriptLib;
935935
PRODUCT_NAME = ShapeScript;
936936
SKIP_INSTALL = YES;

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

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,16 @@
2929
shouldUseLaunchSchemeArgsEnv = "YES"
3030
codeCoverageEnabled = "YES">
3131
<Testables>
32+
<TestableReference
33+
skipped = "NO">
34+
<BuildableReference
35+
BuildableIdentifier = "primary"
36+
BlueprintIdentifier = "01BFB39E21425C8500E47A7C"
37+
BuildableName = "ShapeScriptTests.xctest"
38+
BlueprintName = "ShapeScriptTests"
39+
ReferencedContainer = "container:ShapeScript.xcodeproj">
40+
</BuildableReference>
41+
</TestableReference>
3242
</Testables>
3343
</TestAction>
3444
<LaunchAction

0 commit comments

Comments
 (0)