Skip to content

Commit a57fbb8

Browse files
committed
bump lib version
1 parent 3dcb8a5 commit a57fbb8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Runtime/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export class SwiftRuntime {
1414
private _instance: WebAssembly.Instance | null;
1515
private _memory: Memory | null;
1616
private _closureDeallocator: SwiftClosureDeallocator | null;
17-
private version: number = 706;
17+
private version: number = 707;
1818

1919
private textDecoder = new TextDecoder("utf-8");
2020
private textEncoder = new TextEncoder(); // Only support utf-8

Sources/_CJavaScriptKit/_CJavaScriptKit.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ void swjs_cleanup_host_function_call(void *argv_buffer) {
3636
/// this and `SwiftRuntime.version` in `./Runtime/src/index.ts`.
3737
__attribute__((export_name("swjs_library_version")))
3838
int swjs_library_version(void) {
39-
return 706;
39+
return 707;
4040
}
4141

4242
int _library_features(void);

0 commit comments

Comments
 (0)