-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #721 from wasmerio/prepare-1.2.0
Prepare the 1.2.0 release
- Loading branch information
Showing
12 changed files
with
44 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ | |
|
||
setup( | ||
name='wasmer', | ||
version='1.1.0', | ||
version='1.2.0', | ||
author='The Wasmer Engineering Team', | ||
author_email='[email protected]', | ||
license='MIT', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ | |
|
||
setup( | ||
name='wasmer-compiler-cranelift', | ||
version='1.1.0', | ||
version='1.2.0', | ||
author='The Wasmer Engineering Team', | ||
author_email='[email protected]', | ||
license='MIT', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ | |
|
||
setup( | ||
name='wasmer-compiler-llvm', | ||
version='1.1.0', | ||
version='1.2.0', | ||
author='The Wasmer Engineering Team', | ||
author_email='[email protected]', | ||
license='MIT', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ | |
|
||
setup( | ||
name='wasmer-compiler-singlepass', | ||
version='1.1.0', | ||
version='1.2.0', | ||
author='The Wasmer Engineering Team', | ||
author_email='[email protected]', | ||
license='MIT', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "wasmer" | ||
version = "1.1.0" | ||
version = "1.2.0" | ||
authors = ["Wasmer Engineering Team <[email protected]>"] | ||
edition = "2018" | ||
description = "Python extension to run WebAssembly binaries" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "wasmer_compiler_cranelift" | ||
version = "1.1.0" | ||
version = "1.2.0" | ||
authors = ["Wasmer Engineering Team <[email protected]>"] | ||
edition = "2018" | ||
description = "The Cranelift compiler for the `wasmer` package (to compile WebAssembly module)" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "wasmer_compiler_llvm" | ||
version = "1.1.0" | ||
version = "1.2.0" | ||
authors = ["Wasmer Engineering Team <[email protected]>"] | ||
edition = "2018" | ||
description = "Python extension to run WebAssembly binaries" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "wasmer_compiler_singlepass" | ||
version = "1.1.0" | ||
version = "1.2.0" | ||
authors = ["Wasmer Engineering Team <[email protected]>"] | ||
edition = "2018" | ||
description = "Python extension to run WebAssembly binaries" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "wasmer-engines" | ||
version = "1.1.0" | ||
version = "1.2.0" | ||
authors = ["Wasmer Engineering Team <[email protected]>"] | ||
edition = "2018" | ||
description = "Engines and sibling types for the `wasmer-*-python` crates" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,7 @@ fi | |
|
||
: "${SED:=sed}" | ||
|
||
CURRENT_VERSION="1.1.0" | ||
CURRENT_VERSION="1.2.0" | ||
|
||
if [[ -z "$1" ]] | ||
then | ||
|