Skip to content

Commit b7d034b

Browse files
committed
Finalize release 1.9.1.
1 parent 40e4751 commit b7d034b

File tree

7 files changed

+23
-14
lines changed

7 files changed

+23
-14
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## 1.9.1 (2020-10-04)
4+
- Revision of library `(lispkit test)` involving procedures `test-group-failed-tests`, `test-group-passed-tests`, `failed-tests`, `passed-tests`, `current-test-epsilon`
5+
- Fixed comparison of complex numbers and numbers involving NaN in library `(lispkit test)`
6+
- Fixed small bugs in `(lispkit match)` and included support for `=..`, `*..`, and `**1`
7+
- Refactored debugging functionality into library `(lispkit debug)`
8+
- New libraries: `(srfi 194)`, `(srfi 204)`, `(lispkit sxml)`, `(lispkit sxml html)`, and `(lispkit sxml xml)`
9+
310
## 1.9.0 (2020-06-20)
411
- New libraries: `(lispkit sqlite)`, `(lispkit combinator)`, `(lispkit system os)`, `(srfi 195)` and `(srfi 196)`
512
- Renamed library `(lispkit iteration)` into `(lispkit iterate)`

LispKit.xcodeproj/project.pbxproj

+6-6
Original file line numberDiff line numberDiff line change
@@ -2743,7 +2743,7 @@
27432743
"@executable_path/../Frameworks",
27442744
"@loader_path/Frameworks",
27452745
);
2746-
MARKETING_VERSION = 1.9.0;
2746+
MARKETING_VERSION = 1.9.1;
27472747
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
27482748
MTL_FAST_MATH = YES;
27492749
PRODUCT_BUNDLE_IDENTIFIER = net.objecthub.LispKitTools;
@@ -2779,7 +2779,7 @@
27792779
"@executable_path/../Frameworks",
27802780
"@loader_path/Frameworks",
27812781
);
2782-
MARKETING_VERSION = 1.9.0;
2782+
MARKETING_VERSION = 1.9.1;
27832783
MTL_FAST_MATH = YES;
27842784
PRODUCT_BUNDLE_IDENTIFIER = net.objecthub.LispKitTools;
27852785
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
@@ -3055,31 +3055,31 @@
30553055
repositoryURL = "https://github.com/objecthub/swift-sqliteexpress.git";
30563056
requirement = {
30573057
kind = upToNextMajorVersion;
3058-
minimumVersion = 1.0.2;
3058+
minimumVersion = 1.0.3;
30593059
};
30603060
};
30613061
CC5E53012355AAD400C72CE2 /* XCRemoteSwiftPackageReference "swift-numberkit" */ = {
30623062
isa = XCRemoteSwiftPackageReference;
30633063
repositoryURL = "https://github.com/objecthub/swift-numberkit.git";
30643064
requirement = {
30653065
kind = upToNextMajorVersion;
3066-
minimumVersion = 2.3.7;
3066+
minimumVersion = 2.3.9;
30673067
};
30683068
};
30693069
CC5E53042355AB0700C72CE2 /* XCRemoteSwiftPackageReference "swift-commandlinekit" */ = {
30703070
isa = XCRemoteSwiftPackageReference;
30713071
repositoryURL = "https://github.com/objecthub/swift-commandlinekit.git";
30723072
requirement = {
30733073
kind = upToNextMajorVersion;
3074-
minimumVersion = 0.3.2;
3074+
minimumVersion = 0.3.3;
30753075
};
30763076
};
30773077
CCA6C3D22361149D007D2AF0 /* XCRemoteSwiftPackageReference "swift-markdownkit" */ = {
30783078
isa = XCRemoteSwiftPackageReference;
30793079
repositoryURL = "https://github.com/objecthub/swift-markdownkit.git";
30803080
requirement = {
30813081
kind = upToNextMajorVersion;
3082-
minimumVersion = 0.2.2;
3082+
minimumVersion = 1.0.1;
30833083
};
30843084
};
30853085
/* End XCRemoteSwiftPackageReference section */

Package.swift

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// swift-tools-version:5.1
1+
// swift-tools-version:5.2
22
//
33
// Package.swift
44
// LispKit
@@ -47,13 +47,13 @@ let package = Package(
4747
],
4848
dependencies: [
4949
.package(url: "https://github.com/objecthub/swift-numberkit.git",
50-
.upToNextMajor(from: "2.3.7")),
50+
.upToNextMajor(from: "2.3.9")),
5151
.package(url: "https://github.com/objecthub/swift-markdownkit.git",
52-
.upToNextMajor(from: "0.2.2")),
52+
.upToNextMajor(from: "1.0.1")),
5353
.package(url: "https://github.com/objecthub/swift-commandlinekit.git",
54-
.upToNextMajor(from: "0.3.2")),
54+
.upToNextMajor(from: "0.3.3")),
5555
.package(url: "https://github.com/objecthub/swift-sqliteexpress.git",
56-
.upToNextMajor(from: "1.0.2"))
56+
.upToNextMajor(from: "1.0.3"))
5757
],
5858
targets: [
5959
.target(name: "LispKit",

Sources/LispKit/Info.plist

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

Sources/LispKit/Primitives/MarkdownLibrary.swift

+2
Original file line numberDiff line numberDiff line change
@@ -945,6 +945,8 @@ public final class MarkdownLibrary: NativeLibrary {
945945
self.externMarkdown(title))
946946
case .thematicBreak:
947947
return self.makeCase(self.blockType, self.thematicBreak)
948+
default:
949+
return nil
948950
}
949951
}
950952

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: "1.9.0",
39+
implementationVersion: "1.9.1",
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>1.9.0</string>
18+
<string>1.9.1</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

0 commit comments

Comments
 (0)