Skip to content

Commit f2d5a8a

Browse files
committed
Finalize release 2.3.0.
1 parent 34fbb7b commit f2d5a8a

File tree

5 files changed

+12
-4
lines changed

5 files changed

+12
-4
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## 2.3.0 (2022-08-01)
4+
5+
- Major revamp of all type-related functionality: each type is now represented by a type tag/symbol; procedure `type-for` from library `(lispkit type)` can be used to determine the type tag of a given object; breaking change for `make-type`, which now returns 5 values (the first is a new type tag)
6+
- Support complex numbers for trigonometric and inverse trigonometric functions in library `(lispkit math)`: `sin`, `cos`, `tan`, `asin`, `acos`, and `atan`
7+
- Bug fixes in library `(lispkit draw chart bar)` and `(lispkit enum)`
8+
- New library: `(lispkit math matrix)`
9+
310
## 2.2.1 (2022-05-28)
411

512
- Fixed bug preventing LispKit to correctly determine the maximum number of threads

LispKit.xcodeproj/project.pbxproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -4953,7 +4953,7 @@
49534953
"@executable_path/../Frameworks",
49544954
"@loader_path/Frameworks",
49554955
);
4956-
MARKETING_VERSION = 2.2.1;
4956+
MARKETING_VERSION = 2.3.0;
49574957
"OTHER_SWIFT_FLAGS[arch=*]" = "-D DEBUG";
49584958
PRODUCT_BUNDLE_IDENTIFIER = net.objecthub.LispKit;
49594959
PRODUCT_NAME = "$(TARGET_NAME)";
@@ -4983,7 +4983,7 @@
49834983
"@executable_path/../Frameworks",
49844984
"@loader_path/Frameworks",
49854985
);
4986-
MARKETING_VERSION = 2.2.1;
4986+
MARKETING_VERSION = 2.3.0;
49874987
PRODUCT_BUNDLE_IDENTIFIER = net.objecthub.LispKit;
49884988
PRODUCT_NAME = "$(TARGET_NAME)";
49894989
SKIP_INSTALL = YES;

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ _LispKit_ provides support for the following core features, many of which are ba
7676
[`(lispkit system os)`](https://github.com/objecthub/swift-lispkit/wiki/LispKit-System-OS),
7777
[`(lispkit box)`](https://github.com/objecthub/swift-lispkit/wiki/LispKit-Box),
7878
[`(lispkit math)`](https://github.com/objecthub/swift-lispkit/wiki/LispKit-Math),
79+
[`(lispkit math matrix)`](https://github.com/objecthub/swift-lispkit/wiki/LispKit-Math-Matrix),
7980
[`(lispkit math util)`](https://github.com/objecthub/swift-lispkit/wiki/LispKit-Math-Util),
8081
[`(lispkit math stats)`](https://github.com/objecthub/swift-lispkit/wiki/LispKit-Math-Stats),
8182
[`(lispkit list)`](https://github.com/objecthub/swift-lispkit/wiki/LispKit-List),

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.2.1",
39+
implementationVersion: "2.3.0",
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.2.1</string>
18+
<string>2.3.0</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

0 commit comments

Comments
 (0)