Skip to content

Commit b5c7887

Browse files
authored
Merge pull request #51 from wasmerio/update-wasmer-stable-1.0.0
chore: Bump to wasmer 1.0.0
2 parents cfe38d2 + f7602a2 commit b5c7887

File tree

4 files changed

+33
-34
lines changed

4 files changed

+33
-34
lines changed

Cargo.lock

Lines changed: 25 additions & 25 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
11
[package]
22
publish = false
33
name = "wasmer-jni"
4-
version = "0.2.0"
4+
version = "0.3.0"
55
authors = ["Ivan Enderlin <ivan.enderlin@hoa-project.net>"]
66
edition = "2018"
77

88
[lib]
99
crate-type = ["cdylib"]
1010

1111
[dependencies]
12-
# 9fc9daaedd44994c439f8232809d3ae9dabe1bd3 is 1.0.0-rc1 - hasn't been released for wasmer-runtime
13-
wasmer = { git = "https://github.com/wasmerio/wasmer", rev = "9fc9daaedd44994c439f8232809d3ae9dabe1bd3" }
14-
wasmer-runtime = { git = "https://github.com/wasmerio/wasmer", rev = "9fc9daaedd44994c439f8232809d3ae9dabe1bd3" }
15-
wasmer-runtime-core = { git = "https://github.com/wasmerio/wasmer", rev = "9fc9daaedd44994c439f8232809d3ae9dabe1bd3" }
12+
wasmer = { git = "https://github.com/wasmerio/wasmer", rev = "1.0.0" }
13+
wasmer-runtime = { git = "https://github.com/wasmerio/wasmer", rev = "1.0.0" }
14+
wasmer-runtime-core = { git = "https://github.com/wasmerio/wasmer", rev = "1.0.0" }
1615
jni = "0.16"

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ Wasmer JNI as a dependency, write for instance:
5656

5757
```gradle
5858
dependencies {
59-
implementation "org.wasmer:wasmer-jni-amd64-linux:0.2.0"
59+
implementation "org.wasmer:wasmer-jni-amd64-linux:0.3.0"
6060
}
6161
```
6262

@@ -305,7 +305,7 @@ To build the JAR package:
305305
$ make package
306306
```
307307

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

310310
#### Automatic dependencies per architecture and platform
311311

@@ -355,7 +355,7 @@ Finally, you can configure your dependencies such as:
355355

356356
```gradle
357357
dependencies {
358-
implementation "org.wasmer:wasmer-jni-" + inferWasmerJarAppendix() + ":0.2.0"
358+
implementation "org.wasmer:wasmer-jni-" + inferWasmerJarAppendix() + ":0.3.0"
359359
}
360360
```
361361

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77

88
allprojects {
99
group "org.wasmer"
10-
version "0.2.0"
10+
version "0.3.0"
1111
}
1212

1313
// This is needed for the Java plugin to make sure

0 commit comments

Comments
 (0)