Skip to content

Commit f3d8353

Browse files
committed
Finalize release 1.7.2.
1 parent ebbbce2 commit f3d8353

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

3+
## 1.7.2 (2019-09-08)
4+
- New libraries: `(lispkit stream)`, `(scheme mapping)`, `(srfi 146)`, `(srfi 165)`, `(srfi 173)`
5+
- Fixed memory leak involving recursive local functions
6+
- Support uninterned symbols
7+
- Implement algebraic datatypes in terms of more efficient internal functions
8+
- Extension and re-implementation of library `(lispkit type)`
9+
- Include `miniAdapton` in the new third-party directory
10+
- Support custom keywords in `let-keywords`
11+
- New example code for generating mazes
12+
313
## 1.7.1 (2019-03-31)
414
- Migrated project to Xcode 10.2
515
- Ported code to Swift 5

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.7.1</string>
18+
<string>1.7.2</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

Sources/LispKitRepl/main.swift

+1-1
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.1",
131+
implementationVersion: "1.7.2",
132132
commandLineArguments: cmdLineArgs,
133133
includeInternalResources: false,
134134
includeDocumentPath: searchDocs.wasSet ? "LispKit" : nil)

0 commit comments

Comments
 (0)