Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions 5 CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Unreleased


# 0.7.0 (25 September 2020)
Comment thread
kateinoigakukun marked this conversation as resolved.

This release adds multiple new types bridged from JavaScript, namely `JSError`, `JSDate`, `JSTimer` (which corresponds to `setTimeout`/`setInterval` calls and manages closure lifetime for you), `JSString` and `JSPromise`. We now also have [documentation published automatically](https://swiftwasm.github.io/JavaScriptKit/) for the main branch.

**Closed issues:**

- `TypedArray` improvement? ([#52](https://github.com/swiftwasm/JavaScriptKit/issues/52))
Expand Down
2 changes: 1 addition & 1 deletion 2 Runtime/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ class SwiftRuntimeHeap {
export class SwiftRuntime {
private instance: WebAssembly.Instance | null;
private heap: SwiftRuntimeHeap;
private version: number = 611;
private version: number = 700;

constructor() {
this.instance = null;
Expand Down
2 changes: 1 addition & 1 deletion 2 Sources/JavaScriptKit/Compatibility.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
/// this and `SwiftRuntime.version` in `./Runtime/src/index.ts`.
@_cdecl("swjs_library_version")
func _library_version() -> Double {
return 611
return 700
}
2 changes: 1 addition & 1 deletion 2 package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion 2 package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "javascript-kit-swift",
"version": "0.6.0",
"version": "0.7.0",
"description": "A runtime library of JavaScriptKit which is Swift framework to interact with JavaScript through WebAssembly.",
"main": "Runtime/lib/index.js",
"files": [
Expand Down
Morty Proxy This is a proxified and sanitized view of the page, visit original site.