Skip to content

Commit d77d197

Browse files
committed
Finalize release 2.0.3.
1 parent 8b16586 commit d77d197

File tree

5 files changed

+16
-7
lines changed

5 files changed

+16
-7
lines changed

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
## 2.0.3 (2021-09-12)
4+
5+
- Fixed bug in logic to detect valid local definitions
6+
- Handle libraries with errors more carefully to prevent crashes
7+
- Fixed bit counting bug in library `(srfi 143)`
8+
- New procedures in library `(lispkit core)`: `thunk?`, `procedure-of-arity?`, `procedure-name`, `procedure-arity`, `procedure-arity-range`, `procedure-arity-includes?`, `arity-at-least?`, `arity-at-least-value`
9+
- Included new libraries: `(srfi sicp)`, `(srfi 102)`, `(srfi 217)`, `(srfi 224)`
10+
- New sample code: `EUStats.scm`
11+
312
## 2.0.2 (2021-08-08)
413

514
- Fixed serious bug in procedure `load` (previously, `load` always returned no result instead of the result of the last executed expression).

LispKit.xcodeproj/project.pbxproj

+4-4
Original file line numberDiff line numberDiff line change
@@ -4246,7 +4246,7 @@
42464246
"@executable_path/../Frameworks",
42474247
"@loader_path/Frameworks",
42484248
);
4249-
MARKETING_VERSION = 2.0.2;
4249+
MARKETING_VERSION = 2.0.3;
42504250
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
42514251
MTL_FAST_MATH = YES;
42524252
PRODUCT_BUNDLE_IDENTIFIER = net.objecthub.LispKitTools;
@@ -4282,7 +4282,7 @@
42824282
"@executable_path/../Frameworks",
42834283
"@loader_path/Frameworks",
42844284
);
4285-
MARKETING_VERSION = 2.0.2;
4285+
MARKETING_VERSION = 2.0.3;
42864286
MTL_FAST_MATH = YES;
42874287
PRODUCT_BUNDLE_IDENTIFIER = net.objecthub.LispKitTools;
42884288
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
@@ -4528,7 +4528,7 @@
45284528
"@executable_path/Frameworks",
45294529
"@loader_path/Frameworks",
45304530
);
4531-
MARKETING_VERSION = 2.0.2;
4531+
MARKETING_VERSION = 2.0.3;
45324532
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
45334533
MTL_FAST_MATH = YES;
45344534
PRODUCT_BUNDLE_IDENTIFIER = net.objecthub.LispKit;
@@ -4568,7 +4568,7 @@
45684568
"@executable_path/Frameworks",
45694569
"@loader_path/Frameworks",
45704570
);
4571-
MARKETING_VERSION = 2.0.2;
4571+
MARKETING_VERSION = 2.0.3;
45724572
MTL_FAST_MATH = YES;
45734573
PRODUCT_BUNDLE_IDENTIFIER = net.objecthub.LispKit;
45744574
PRODUCT_NAME = LispKit;

Sources/LispKit/Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<key>CFBundlePackageType</key>
1818
<string>FMWK</string>
1919
<key>CFBundleShortVersionString</key>
20-
<string>2.0.2</string>
20+
<string>2.0.3</string>
2121
<key>CFBundleSignature</key>
2222
<string>????</string>
2323
<key>CFBundleVersion</key>

Sources/LispKitRepl/main.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ guard repl.flagsValid() else {
3636
if repl.shouldRunRepl() {
3737
#if SPM
3838
guard repl.configurationSuccessfull(implementationName: "LispKit",
39-
implementationVersion: "2.0.2",
39+
implementationVersion: "2.0.3",
4040
includeInternalResources: false,
4141
defaultDocDirectory: "LispKit",
4242
features: features) else {

Tests/LispKitTests/Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>BNDL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>2.0.2</string>
18+
<string>2.0.3</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

0 commit comments

Comments
 (0)