Skip to content

Commit

Permalink
Merge pull request #51 from wasmerio/update-wasmer-stable-1.0.0
Browse files Browse the repository at this point in the history
chore: Bump to wasmer 1.0.0
  • Loading branch information
jubianchi authored Jan 5, 2021
2 parents cfe38d2 + f7602a2 commit b5c7887
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 34 deletions.
50 changes: 25 additions & 25 deletions Cargo.lock

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

9 changes: 4 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
[package]
publish = false
name = "wasmer-jni"
version = "0.2.0"
version = "0.3.0"
authors = ["Ivan Enderlin <ivan.enderlin@hoa-project.net>"]
edition = "2018"

[lib]
crate-type = ["cdylib"]

[dependencies]
# 9fc9daaedd44994c439f8232809d3ae9dabe1bd3 is 1.0.0-rc1 - hasn't been released for wasmer-runtime
wasmer = { git = "https://github.com/wasmerio/wasmer", rev = "9fc9daaedd44994c439f8232809d3ae9dabe1bd3" }
wasmer-runtime = { git = "https://github.com/wasmerio/wasmer", rev = "9fc9daaedd44994c439f8232809d3ae9dabe1bd3" }
wasmer-runtime-core = { git = "https://github.com/wasmerio/wasmer", rev = "9fc9daaedd44994c439f8232809d3ae9dabe1bd3" }
wasmer = { git = "https://github.com/wasmerio/wasmer", rev = "1.0.0" }
wasmer-runtime = { git = "https://github.com/wasmerio/wasmer", rev = "1.0.0" }
wasmer-runtime-core = { git = "https://github.com/wasmerio/wasmer", rev = "1.0.0" }
jni = "0.16"
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ Wasmer JNI as a dependency, write for instance:

```gradle
dependencies {
implementation "org.wasmer:wasmer-jni-amd64-linux:0.2.0"
implementation "org.wasmer:wasmer-jni-amd64-linux:0.3.0"
}
```

Expand Down Expand Up @@ -305,7 +305,7 @@ To build the JAR package:
$ make package
```

This will generate the file `build/libs/wasmer-jni-$(architecture)-$(os)-0.2.0.jar`.
This will generate the file `build/libs/wasmer-jni-$(architecture)-$(os)-0.3.0.jar`.

#### Automatic dependencies per architecture and platform

Expand Down Expand Up @@ -355,7 +355,7 @@ Finally, you can configure your dependencies such as:

```gradle
dependencies {
implementation "org.wasmer:wasmer-jni-" + inferWasmerJarAppendix() + ":0.2.0"
implementation "org.wasmer:wasmer-jni-" + inferWasmerJarAppendix() + ":0.3.0"
}
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {

allprojects {
group "org.wasmer"
version "0.2.0"
version "0.3.0"
}

// This is needed for the Java plugin to make sure
Expand Down

0 comments on commit b5c7887

Please sign in to comment.