Skip to content

Commit

Permalink
Finalize release 2.3.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
objecthub committed Feb 5, 2023
1 parent 20aebf0 commit fbdd4cc
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 11 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 2.3.2 (2023-02-05)

- Handle assets correctly in the LispKit REPL
- Improved R7RS regression tests
- Bugfixes in library `(lispkit bytevector)` for procedures `bytevector-copy` and `bytevector-copy!`
- Revamp of library `(lispkit graph)` with new procedures: `graph-topological-sort`, `graph-graph-weakly-connected-components`, `graph-strongly-connected-components`, and `graph-shortest-paths`
- New libraries: `(srfi 228)`, `(srfi 233)`, and `(srfi 236)`

## 2.3.1 (2022-12-10)

- Fixed bug leading to deadlocks when using text ports
Expand Down
12 changes: 6 additions & 6 deletions LispKit.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -4800,7 +4800,7 @@
"@executable_path/../Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 2.3.1;
MARKETING_VERSION = 2.3.2;
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
MTL_FAST_MATH = YES;
PRODUCT_BUNDLE_IDENTIFIER = net.objecthub.LispKitTools;
Expand Down Expand Up @@ -4838,7 +4838,7 @@
"@executable_path/../Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 2.3.1;
MARKETING_VERSION = 2.3.2;
MTL_FAST_MATH = YES;
PRODUCT_BUNDLE_IDENTIFIER = net.objecthub.LispKitTools;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
Expand Down Expand Up @@ -4992,7 +4992,7 @@
"@executable_path/../Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 2.3.1;
MARKETING_VERSION = 2.3.2;
"OTHER_SWIFT_FLAGS[arch=*]" = "-D DEBUG";
PRODUCT_BUNDLE_IDENTIFIER = net.objecthub.LispKit;
PRODUCT_NAME = "$(TARGET_NAME)";
Expand Down Expand Up @@ -5024,7 +5024,7 @@
"@executable_path/../Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 2.3.1;
MARKETING_VERSION = 2.3.2;
PRODUCT_BUNDLE_IDENTIFIER = net.objecthub.LispKit;
PRODUCT_NAME = "$(TARGET_NAME)";
SDKROOT = macosx;
Expand Down Expand Up @@ -5100,7 +5100,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 2.3.1;
MARKETING_VERSION = 2.3.2;
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
MTL_FAST_MATH = YES;
PRODUCT_BUNDLE_IDENTIFIER = net.objecthub.LispKit;
Expand Down Expand Up @@ -5141,7 +5141,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 2.3.1;
MARKETING_VERSION = 2.3.2;
MTL_FAST_MATH = YES;
PRODUCT_BUNDLE_IDENTIFIER = net.objecthub.LispKit;
PRODUCT_NAME = LispKit;
Expand Down
2 changes: 1 addition & 1 deletion Sources/LispKitRepl/AppInfo.swift
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public struct AppInfo {
// Version of the application
public static let version =
(Bundle.main.infoDictionary?["CFBundleShortVersionString"] as? String) ??
"2.3.1"
"2.3.2"

// Copyright message
public static let copyright =
Expand Down
4 changes: 2 additions & 2 deletions Sources/LispKitRepl/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>2.3.1</string>
<string>2.3.2</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>2.3.1</string>
<string>2.3.2</string>
<key>LSMinimumSystemVersion</key>
<string>$(MACOSX_DEPLOYMENT_TARGET)</string>
<key>NSAppTransportSecurity</key>
Expand Down
2 changes: 1 addition & 1 deletion Sources/LispKitRepl/main.swift
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ guard repl.flagsValid() else {
if repl.shouldRunRepl() {
#if SPM
guard repl.configurationSuccessfull(implementationName: "LispKit",
implementationVersion: "2.3.1",
implementationVersion: "2.3.2",
includeInternalResources: false,
defaultDocDirectory: "LispKit",
features: features) else {
Expand Down
2 changes: 1 addition & 1 deletion Tests/LispKitTests/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>BNDL</string>
<key>CFBundleShortVersionString</key>
<string>2.3.1</string>
<string>2.3.2</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down

0 comments on commit fbdd4cc

Please sign in to comment.