Skip to content

Commit 6c14460

Browse files
committed
Update versions and change log.
1 parent 22061eb commit 6c14460

File tree

5 files changed

+15
-5
lines changed

5 files changed

+15
-5
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

3+
## 1.8 (2019-10-17)
4+
- Migrated project to Xcode 11.1
5+
- Ported code to Swift 5.1
6+
- Simplify printed representation of procedures.
7+
- Rewrite of garbage collector: replaced recursive garbage collector with iterative version
8+
- Completed hash functions of library `(lispkit hashtable)`
9+
- New library: `(lispkit comparator)`
10+
- Several fixes in `(lispkit math)`: `integer->fx` renamed to `integer->fixnum`, introduced `fxlogical-shift-right` and `real->flonum`, fixed `bit-count`, fixed `fxmodulo` to work with negative numbers
11+
- Statically link libraries. Removed Carthage support.
12+
313
## 1.7.2 (2019-09-08)
414
- New libraries: `(lispkit stream)`, `(scheme mapping)`, `(srfi 146)`, `(srfi 165)`, `(srfi 173)`
515
- Fixed memory leak involving recursive local functions

Sources/LispKit/Info.plist

Lines changed: 1 addition & 1 deletion
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.7.2</string>
18+
<string>1.8.0</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

Sources/LispKitRepl/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@
1515
<key>CFBundlePackageType</key>
1616
<string>APPL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>2.1.2</string>
18+
<string>2.1.3</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
22-
<string>2.1.2</string>
22+
<string>2.1.3</string>
2323
<key>LSMinimumSystemVersion</key>
2424
<string>$(MACOSX_DEPLOYMENT_TARGET)</string>
2525
<key>NSAppTransportSecurity</key>

Sources/LispKitRepl/main.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ var cmdLineArgs = flags.parameters.isEmpty ? [CommandLine.arguments.first!] : fl
128128
#if SPM
129129
let context = Context(delegate: terminal,
130130
implementationName: "LispKit",
131-
implementationVersion: "1.7.2",
131+
implementationVersion: "1.8.0",
132132
commandLineArguments: cmdLineArgs,
133133
includeInternalResources: false,
134134
includeDocumentPath: searchDocs.value)

Tests/LispKitTests/Info.plist

Lines changed: 1 addition & 1 deletion
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.1</string>
18+
<string>1.8.0</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

0 commit comments

Comments
 (0)