We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd0d2f5 commit 0ac5425Copy full SHA for 0ac5425
Runtime/src/index.ts
@@ -118,7 +118,7 @@ class SwiftRuntimeHeap {
118
export class SwiftRuntime {
119
private instance: WebAssembly.Instance | null;
120
private heap: SwiftRuntimeHeap;
121
- private version: number = 700;
+ private version: number = 701;
122
123
constructor() {
124
this.instance = null;
Sources/_CJavaScriptKit/_CJavaScriptKit.c
@@ -29,7 +29,7 @@ void _cleanup_host_function_call(void *argv_buffer) {
29
/// this and `SwiftRuntime.version` in `./Runtime/src/index.ts`.
30
__attribute__((export_name("swjs_library_version")))
31
int _library_version() {
32
- return 700;
+ return 701;
33
}
34
35
#endif
0 commit comments