Skip to content

Commit

Permalink
Release version 0.7.0 (#76)
Browse files Browse the repository at this point in the history
* 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>
  • Loading branch information
kateinoigakukun and MaxDesiatov authored Sep 25, 2020
1 parent 07e687b commit 50649fa
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Unreleased


# 0.7.0 (25 September 2020)

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 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 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 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 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

0 comments on commit 50649fa

Please sign in to comment.