Skip to content

Commit 612330c

Browse files
committed
Tweaks for preparing release 1.8.4.
1 parent 27f07d0 commit 612330c

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.4 (2020-03-30)
4+
- Several garbage collector enhancements
5+
- Fixed serious memory leak in the compiler
6+
- Fixed read command logic in the LispKit REPL
7+
- REPL now uses default colors and thus also works with dark mode.
8+
- Made field access of records type safe.
9+
- New libraries: `(srfi 6)`, `(srfi 54)`, `(srfi 162)`
10+
- Extended library `(lispkit dynamic)` with assertion support: `make-assertion-error`, `assertion`, `assert`
11+
- New sample code `Polynomials.scm`
12+
313
## 1.8.3 (2020-01-19)
414
- New libraries: `(lispkit markdown)`, `(lispkit disjoint-set)`, `(srfi 167)`, `(srfi 98)`, `(srfi 87)`
515
- Extended library `(lispkit system)` with procedures `asset-file-path`, `path-components`, `parent-path`, `path`, and `source-directory`

LispKit.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2142,7 +2142,7 @@
21422142
"@loader_path/Frameworks",
21432143
);
21442144
MACOSX_DEPLOYMENT_TARGET = 10.13;
2145-
MARKETING_VERSION = 1.8.3;
2145+
MARKETING_VERSION = 1.8.4;
21462146
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
21472147
MTL_FAST_MATH = YES;
21482148
PRODUCT_BUNDLE_IDENTIFIER = net.objecthub.LispKitTools;
@@ -2179,7 +2179,7 @@
21792179
"@loader_path/Frameworks",
21802180
);
21812181
MACOSX_DEPLOYMENT_TARGET = 10.13;
2182-
MARKETING_VERSION = 1.8.3;
2182+
MARKETING_VERSION = 1.8.4;
21832183
MTL_FAST_MATH = YES;
21842184
PRODUCT_BUNDLE_IDENTIFIER = net.objecthub.LispKitTools;
21852185
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";

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

Sources/LispKitRepl/main.swift

Lines changed: 1 addition & 1 deletion
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.8.3",
39+
implementationVersion: "1.8.4",
4040
includeInternalResources: false,
4141
defaultDocDirectory: "LispKit",
4242
features: features) else {

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

0 commit comments

Comments
 (0)