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

Commit 50649fa

Browse filesBrowse files
Release version 0.7.0 (swiftwasm#76)
* Bump 0.7.0 * Update CHANGELOG.md Co-authored-by: Max Desiatov <max@desiatov.com> * Bump runtime version 0.7.0 Co-authored-by: Max Desiatov <max@desiatov.com>
1 parent 07e687b commit 50649fa
Copy full SHA for 50649fa

5 files changed

+9-4Lines changed: 9 additions & 4 deletions

File tree

Expand file treeCollapse file tree
Open diff view settings
Filter options
Expand file treeCollapse file tree
Open diff view settings
Collapse file

‎CHANGELOG.md‎

Copy file name to clipboardExpand all lines: CHANGELOG.md
+5Lines changed: 5 additions & 0 deletions
  • Display the source diff
  • Display the rich diff
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))
Collapse file

‎Runtime/src/index.ts‎

Copy file name to clipboardExpand all lines: Runtime/src/index.ts
+1-1Lines changed: 1 addition & 1 deletion
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;
Collapse file

‎Sources/JavaScriptKit/Compatibility.swift‎

Copy file name to clipboardExpand all lines: Sources/JavaScriptKit/Compatibility.swift
+1-1Lines changed: 1 addition & 1 deletion
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
}
Collapse file

‎package-lock.json‎

Copy file name to clipboardExpand all lines: package-lock.json
+1-1Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Collapse file

‎package.json‎

Copy file name to clipboardExpand all lines: package.json
+1-1Lines changed: 1 addition & 1 deletion
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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.