Skip to content

Commit 8744deb

Browse files
committed
Update for 1.8.3 release
1 parent cfc95b2 commit 8744deb

File tree

7 files changed

+57
-9
lines changed

7 files changed

+57
-9
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Change Log
22

3+
## [1.8.3](https://github.com/nicklockwood/ShapeScript/releases/tag/1.8.3) (2024-02-03)
4+
5+
- Fixed file access bug for iCloud hosted files
6+
- Fixed issue where initial seed for random sequence wasn't truncated to correct range
7+
- Updated iOS TextView with some bug fixes
8+
- Bumped Euclid to version 0.7.6
9+
- Bumped LRUCache to version 1.0.7
10+
311
## [1.8.2](https://github.com/nicklockwood/ShapeScript/releases/tag/1.8.2) (2024-01-20)
412

513
- Fixed alpha blending bugs in rendered images

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

ShapeScript.xcodeproj/project.pbxproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1342,7 +1342,7 @@
13421342
"$(inherited)",
13431343
"@executable_path/../Frameworks",
13441344
);
1345-
MARKETING_VERSION = 1.8.2;
1345+
MARKETING_VERSION = 1.8.3;
13461346
PRODUCT_BUNDLE_IDENTIFIER = com.charcoaldesign.ShapeScriptViewer;
13471347
PRODUCT_MODULE_NAME = Viewer;
13481348
PRODUCT_NAME = "ShapeScript Viewer";
@@ -1370,7 +1370,7 @@
13701370
"$(inherited)",
13711371
"@executable_path/../Frameworks",
13721372
);
1373-
MARKETING_VERSION = 1.8.2;
1373+
MARKETING_VERSION = 1.8.3;
13741374
PRODUCT_BUNDLE_IDENTIFIER = com.charcoaldesign.ShapeScriptViewer;
13751375
PRODUCT_MODULE_NAME = Viewer;
13761376
PRODUCT_NAME = "ShapeScript Viewer";
@@ -1400,7 +1400,7 @@
14001400
"$(inherited)",
14011401
"@executable_path/Frameworks",
14021402
);
1403-
MARKETING_VERSION = 1.8.2;
1403+
MARKETING_VERSION = 1.8.3;
14041404
PRODUCT_BUNDLE_IDENTIFIER = com.charcoaldesign.ShapeScriptViewer;
14051405
PRODUCT_MODULE_NAME = Viewer;
14061406
PRODUCT_NAME = ShapeScript;
@@ -1435,7 +1435,7 @@
14351435
"$(inherited)",
14361436
"@executable_path/Frameworks",
14371437
);
1438-
MARKETING_VERSION = 1.8.2;
1438+
MARKETING_VERSION = 1.8.3;
14391439
PRODUCT_BUNDLE_IDENTIFIER = com.charcoaldesign.ShapeScriptViewer;
14401440
PRODUCT_MODULE_NAME = Viewer;
14411441
PRODUCT_NAME = ShapeScript;
@@ -1602,7 +1602,7 @@
16021602
"@executable_path/../Frameworks",
16031603
"@loader_path/Frameworks",
16041604
);
1605-
MARKETING_VERSION = 1.8.2;
1605+
MARKETING_VERSION = 1.8.3;
16061606
MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++";
16071607
MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++14";
16081608
PRODUCT_BUNDLE_IDENTIFIER = com.charcoaldesign.ShapeScriptLib;
@@ -1639,7 +1639,7 @@
16391639
"@executable_path/../Frameworks",
16401640
"@loader_path/Frameworks",
16411641
);
1642-
MARKETING_VERSION = 1.8.2;
1642+
MARKETING_VERSION = 1.8.3;
16431643
MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++";
16441644
MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++14";
16451645
PRODUCT_BUNDLE_IDENTIFIER = com.charcoaldesign.ShapeScriptLib;

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.8.2"
14+
public let version = "1.8.3"
1515

1616
public func evaluate(
1717
_ program: Program,

Viewer/Mac/WhatsNew.rtf

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,25 @@ What's New in ShapeScript?\
1111
\
1212
\pard\tx220\tx720\pardeftab720\li720\fi-720\partightenfactor0
1313

14+
\f1\b\fs28 \cf2 ShapeScript 1.8.3 \'97 2024-02-03\
15+
\
16+
\pard\tx220\tx720\pardeftab720\li720\fi-720\partightenfactor0
17+
\cf2 \kerning1\expnd0\expndtw0 \'95
18+
\f0\b0 \expnd0\expndtw0\kerning0
19+
Fixed file access bug for iCloud hosted files.\
20+
\ \'95
21+
\f0\b0 \expnd0\expndtw0\kerning0
22+
Fixed issue where initial seed for random sequence wasn't truncated to correct range.\
23+
\ \'95
24+
\f0\b0 \expnd0\expndtw0\kerning0
25+
Updated iOS TextView with some bug fixes.\
26+
\ \'95
27+
\f0\b0 \expnd0\expndtw0\kerning0
28+
Bumped Euclid to version 0.7.6.\
29+
\ \'95
30+
\f0\b0 \expnd0\expndtw0\kerning0
31+
Bumped LRUCache to version 1.0.7.\
32+
\
1433
\f1\b\fs28 \cf2 ShapeScript 1.8.2 \'97 2024-01-20\
1534
\
1635
\pard\tx220\tx720\pardeftab720\li720\fi-720\partightenfactor0

Viewer/iOS/WhatsNew.rtf

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,26 @@
55
\paperw11900\paperh16840\margl1440\margr1440\vieww24140\viewh18420\viewkind0
66
\deftab720
77

8+
\f0\b \cf2 ShapeScript 1.8.3 \'97 2024-02-03\
9+
\
10+
\pard\tx220\tx720\pardeftab720\li720\fi-720\partightenfactor0
11+
\cf2 \kerning1\expnd0\expndtw0
12+
\f1\b0 \expnd0\expndtw0\kerning0 \'95
13+
\f1\b0 \expnd0\expndtw0\kerning0
14+
Fixed file access bug for iCloud hosted files.\
15+
\ \'95
16+
\f1\b0 \expnd0\expndtw0\kerning0
17+
Fixed issue where initial seed for random sequence wasn't truncated to correct range.\
18+
\ \'95
19+
\f1\b0 \expnd0\expndtw0\kerning0
20+
Updated iOS TextView with some bug fixes.\
21+
\ \'95
22+
\f1\b0 \expnd0\expndtw0\kerning0
23+
Bumped Euclid to version 0.7.6.\
24+
\ \'95
25+
\f1\b0 \expnd0\expndtw0\kerning0
26+
Bumped LRUCache to version 1.0.7.\
27+
\
828
\f0\b \cf2 ShapeScript 1.8.2 \'97 2024-01-20\
929
\
1030
\pard\tx220\tx720\pardeftab720\li720\fi-720\partightenfactor0

docs/1.8.3

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
1.8.1

0 commit comments

Comments
 (0)