Skip to content

Commit

Permalink
Merge pull request #466 from wasmerio/prepare-1.0.0
Browse files Browse the repository at this point in the history
chore: Prepare the 1.0.0
  • Loading branch information
Hywan authored Jan 18, 2021
2 parents 1828503 + adebd63 commit f79df46
Show file tree
Hide file tree
Showing 9 changed files with 27 additions and 27 deletions.
36 changes: 18 additions & 18 deletions Cargo.lock

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

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-beta2',
version='1.0.0',
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-beta2"
version = "1.0.0"
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.0b2
$ pip install wasmer_compiler_cranelift==1.0.0b2
$ pip install wasmer==1.0.0
$ pip install wasmer_compiler_cranelift==1.0.0
```

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-beta2"
version = "1.0.0"
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-beta2"
version = "1.0.0"
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-beta2"
version = "1.0.0"
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-beta2"
version = "1.0.0"
authors = ["Wasmer Engineering Team <[email protected]>"]
edition = "2018"
description = "Engines and sibling types for the `wasmer-*-python` crates"
Expand Down
2 changes: 1 addition & 1 deletion scripts/update-version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ fi

: "${SED:=sed}"

CURRENT_VERSION="1.0.0-beta2"
CURRENT_VERSION="1.0.0"

if [[ -z "$1" ]]
then
Expand Down

0 comments on commit f79df46

Please sign in to comment.