Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: swiftwasm/JavaScriptKit
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 6c8d3ee9bde3f31d003930b97d0a5a08efe0e990
Choose a base ref
..
head repository: swiftwasm/JavaScriptKit
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 73691c6b2697ca28e2a58751cea5a5545916d531
Choose a head ref
Showing with 2 additions and 2 deletions.
  1. +1 −1 Runtime/src/index.ts
  2. +1 −1 Sources/_CJavaScriptKit/_CJavaScriptKit.c
2 changes: 1 addition & 1 deletion Runtime/src/index.ts
Original file line number Diff line number Diff line change
@@ -14,7 +14,7 @@ export class SwiftRuntime {
private _instance: WebAssembly.Instance | null;
private _memory: Memory | null;
private _closureDeallocator: SwiftClosureDeallocator | null;
private version: number = 709;
private version: number = 708;

private textDecoder = new TextDecoder("utf-8");
private textEncoder = new TextEncoder(); // Only support utf-8
2 changes: 1 addition & 1 deletion Sources/_CJavaScriptKit/_CJavaScriptKit.c
Original file line number Diff line number Diff line change
@@ -37,7 +37,7 @@ void swjs_cleanup_host_function_call(void *argv_buffer) {
/// this and `SwiftRuntime.version` in `./Runtime/src/index.ts`.
__attribute__((export_name("swjs_library_version")))
int swjs_library_version(void) {
return 709;
return 708;
}

int _library_features(void);