Skip to content

Commit 4b943cf

Browse files
authored
Merge pull request #42 from extism/release-1.0.0
release: 1.0.0
2 parents 5bef721 + d0dc0d4 commit 4b943cf

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "extism-pdk"
3-
version = "1.0.0-rc1"
3+
version = "1.0.0"
44
edition = "2021"
55
authors = ["The Extism Authors", "oss@extism.org"]
66
license = "BSD-3-Clause"
@@ -12,9 +12,9 @@ description = "Extism Plug-in Development Kit (PDK) for Rust"
1212
anyhow = "1"
1313
serde = { version = "1", features = ["derive"] }
1414
serde_json = "1"
15-
extism-pdk-derive = {path = "./derive", version = "1.0.0-rc1"}
16-
extism-manifest = {version = "0.5.0", optional = true}
17-
extism-convert = { version = "0.2"}
15+
extism-pdk-derive = {path = "./derive", version = "1.0.0"}
16+
extism-manifest = {version = "1.0.0", optional = true}
17+
extism-convert = { version = "1.0"}
1818
base64 = "0.21.0"
1919

2020
[features]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ cargo new --lib my-plugin
1515
Add the library from [crates.io](https://crates.io/crates/extism-pdk).
1616

1717
```bash
18-
cargo add extism-pdk@1.0.0-rc1
18+
cargo add extism-pdk
1919
```
2020

2121
Change your `Cargo.toml` to set the crate-type to `cdylib` (this instructs the compiler to produce a dynamic library, which for our target will be a Wasm binary):

derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "extism-pdk-derive"
3-
version = "1.0.0-rc1"
3+
version = "1.0.0"
44
edition = "2021"
55
authors = ["The Extism Authors", "oss@extism.org"]
66
license = "BSD-3-Clause"

0 commit comments

Comments
 (0)