Skip to content

Commit

Permalink
chore(release) Prepare the 1.0.0-alpha3.
Browse files Browse the repository at this point in the history
  • Loading branch information
Hywan committed Sep 21, 2020
1 parent 0c2bf79 commit 2a05245
Show file tree
Hide file tree
Showing 9 changed files with 34 additions and 34 deletions.
48 changes: 24 additions & 24 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -100,10 +100,10 @@ doc:
wasmer_compiler_singlepass

publish +WHEELS:
twine upload --username wasmer --repository testpypi {{WHEELS}}
twine upload --username wasmer --repository pypi {{WHEELS}}

publish-any:
twine upload --username wasmer --repository testpypi target/wheels/wasmer-*-py3-none-any.whl
twine upload --username wasmer --repository pypi target/wheels/wasmer-*-py3-none-any.whl

# Compile a Rust program to Wasm.
compile-wasm FILE='examples/simple':
Expand Down
2 changes: 1 addition & 1 deletion packages/any/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

setup(
name='wasmer',
version='1.0.0-alpha2',
version='1.0.0-alpha3',
author='The Wasmer Engineering Team',
author_email='[email protected]',
license='MIT',
Expand Down
2 changes: 1 addition & 1 deletion packages/api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmer"
version = "1.0.0-alpha2"
version = "1.0.0-alpha3"
authors = ["Wasmer Engineering Team <[email protected]>"]
edition = "2018"
description = "Python extension to run WebAssembly binaries"
Expand Down
4 changes: 2 additions & 2 deletions packages/api/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ To install the `wasmer` Python package, and let's say the
`wasmer_compiler_cranelift` compiler, just run those commands in your shell:

```sh
$ pip install wasmer==1.0.0a2
$ pip install wasmer_compiler_cranelift==1.0.0a2
$ pip install wasmer==1.0.0a3
$ pip install wasmer_compiler_cranelift==1.0.0a3
```

And you're ready to get fun!
Expand Down
2 changes: 1 addition & 1 deletion packages/compiler-cranelift/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmer_compiler_cranelift"
version = "1.0.0-alpha2"
version = "1.0.0-alpha3"
authors = ["Wasmer Engineering Team <[email protected]>"]
edition = "2018"
description = "The Cranelift compiler for the `wasmer` package (to compile WebAssembly module)"
Expand Down
2 changes: 1 addition & 1 deletion packages/compiler-llvm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmer_compiler_llvm"
version = "1.0.0-alpha2"
version = "1.0.0-alpha3"
authors = ["Wasmer Engineering Team <[email protected]>"]
edition = "2018"
description = "Python extension to run WebAssembly binaries"
Expand Down
2 changes: 1 addition & 1 deletion packages/compiler-singlepass/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmer_compiler_singlepass"
version = "1.0.0-alpha2"
version = "1.0.0-alpha3"
authors = ["Wasmer Engineering Team <[email protected]>"]
edition = "2018"
description = "Python extension to run WebAssembly binaries"
Expand Down
2 changes: 1 addition & 1 deletion packages/engines/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmer_engines"
version = "1.0.0-alpha2"
version = "1.0.0-alpha3"
authors = ["Wasmer Engineering Team <[email protected]>"]
edition = "2018"
description = "Engines and sibling types for the `wasmer-*-python` crates"
Expand Down

0 comments on commit 2a05245

Please sign in to comment.