Skip to content

Commit fbdd4cc

Browse files
committed
Finalize release 2.3.2.
1 parent 20aebf0 commit fbdd4cc

File tree

6 files changed

+19
-11
lines changed

6 files changed

+19
-11
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## 2.3.2 (2023-02-05)
4+
5+
- Handle assets correctly in the LispKit REPL
6+
- Improved R7RS regression tests
7+
- Bugfixes in library `(lispkit bytevector)` for procedures `bytevector-copy` and `bytevector-copy!`
8+
- Revamp of library `(lispkit graph)` with new procedures: `graph-topological-sort`, `graph-graph-weakly-connected-components`, `graph-strongly-connected-components`, and `graph-shortest-paths`
9+
- New libraries: `(srfi 228)`, `(srfi 233)`, and `(srfi 236)`
10+
311
## 2.3.1 (2022-12-10)
412

513
- Fixed bug leading to deadlocks when using text ports

LispKit.xcodeproj/project.pbxproj

+6-6
Original file line numberDiff line numberDiff line change
@@ -4800,7 +4800,7 @@
48004800
"@executable_path/../Frameworks",
48014801
"@loader_path/Frameworks",
48024802
);
4803-
MARKETING_VERSION = 2.3.1;
4803+
MARKETING_VERSION = 2.3.2;
48044804
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
48054805
MTL_FAST_MATH = YES;
48064806
PRODUCT_BUNDLE_IDENTIFIER = net.objecthub.LispKitTools;
@@ -4838,7 +4838,7 @@
48384838
"@executable_path/../Frameworks",
48394839
"@loader_path/Frameworks",
48404840
);
4841-
MARKETING_VERSION = 2.3.1;
4841+
MARKETING_VERSION = 2.3.2;
48424842
MTL_FAST_MATH = YES;
48434843
PRODUCT_BUNDLE_IDENTIFIER = net.objecthub.LispKitTools;
48444844
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
@@ -4992,7 +4992,7 @@
49924992
"@executable_path/../Frameworks",
49934993
"@loader_path/Frameworks",
49944994
);
4995-
MARKETING_VERSION = 2.3.1;
4995+
MARKETING_VERSION = 2.3.2;
49964996
"OTHER_SWIFT_FLAGS[arch=*]" = "-D DEBUG";
49974997
PRODUCT_BUNDLE_IDENTIFIER = net.objecthub.LispKit;
49984998
PRODUCT_NAME = "$(TARGET_NAME)";
@@ -5024,7 +5024,7 @@
50245024
"@executable_path/../Frameworks",
50255025
"@loader_path/Frameworks",
50265026
);
5027-
MARKETING_VERSION = 2.3.1;
5027+
MARKETING_VERSION = 2.3.2;
50285028
PRODUCT_BUNDLE_IDENTIFIER = net.objecthub.LispKit;
50295029
PRODUCT_NAME = "$(TARGET_NAME)";
50305030
SDKROOT = macosx;
@@ -5100,7 +5100,7 @@
51005100
"@executable_path/Frameworks",
51015101
"@loader_path/Frameworks",
51025102
);
5103-
MARKETING_VERSION = 2.3.1;
5103+
MARKETING_VERSION = 2.3.2;
51045104
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
51055105
MTL_FAST_MATH = YES;
51065106
PRODUCT_BUNDLE_IDENTIFIER = net.objecthub.LispKit;
@@ -5141,7 +5141,7 @@
51415141
"@executable_path/Frameworks",
51425142
"@loader_path/Frameworks",
51435143
);
5144-
MARKETING_VERSION = 2.3.1;
5144+
MARKETING_VERSION = 2.3.2;
51455145
MTL_FAST_MATH = YES;
51465146
PRODUCT_BUNDLE_IDENTIFIER = net.objecthub.LispKit;
51475147
PRODUCT_NAME = LispKit;

Sources/LispKitRepl/AppInfo.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public struct AppInfo {
3232
// Version of the application
3333
public static let version =
3434
(Bundle.main.infoDictionary?["CFBundleShortVersionString"] as? String) ??
35-
"2.3.1"
35+
"2.3.2"
3636

3737
// Copyright message
3838
public static let copyright =

Sources/LispKitRepl/Info.plist

+2-2
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.3.1</string>
18+
<string>2.3.2</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
22-
<string>2.3.1</string>
22+
<string>2.3.2</string>
2323
<key>LSMinimumSystemVersion</key>
2424
<string>$(MACOSX_DEPLOYMENT_TARGET)</string>
2525
<key>NSAppTransportSecurity</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.3.1",
39+
implementationVersion: "2.3.2",
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.3.1</string>
18+
<string>2.3.2</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

0 commit comments

Comments
 (0)