Skip to content

Commit 50649fa

Browse files
Release version 0.7.0 (#76)
* Bump 0.7.0 * Update CHANGELOG.md Co-authored-by: Max Desiatov <[email protected]> * Bump runtime version 0.7.0 Co-authored-by: Max Desiatov <[email protected]>
1 parent 07e687b commit 50649fa

File tree

5 files changed

+9
-4
lines changed

5 files changed

+9
-4
lines changed

Diff for: CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Unreleased
22

3+
4+
# 0.7.0 (25 September 2020)
5+
6+
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.
7+
38
**Closed issues:**
49

510
- `TypedArray` improvement? ([#52](https://github.com/swiftwasm/JavaScriptKit/issues/52))

Diff for: Runtime/src/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ class SwiftRuntimeHeap {
118118
export class SwiftRuntime {
119119
private instance: WebAssembly.Instance | null;
120120
private heap: SwiftRuntimeHeap;
121-
private version: number = 611;
121+
private version: number = 700;
122122

123123
constructor() {
124124
this.instance = null;

Diff for: Sources/JavaScriptKit/Compatibility.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
/// this and `SwiftRuntime.version` in `./Runtime/src/index.ts`.
44
@_cdecl("swjs_library_version")
55
func _library_version() -> Double {
6-
return 611
6+
return 700
77
}

Diff for: package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "javascript-kit-swift",
3-
"version": "0.6.0",
3+
"version": "0.7.0",
44
"description": "A runtime library of JavaScriptKit which is Swift framework to interact with JavaScript through WebAssembly.",
55
"main": "Runtime/lib/index.js",
66
"files": [

0 commit comments

Comments
 (0)