diff --git a/Cargo.toml b/Cargo.toml index 83d3e9f..eaa8b2a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "extism-pdk" -version = "1.0.0-rc1" +version = "1.0.0" edition = "2021" authors = ["The Extism Authors", "oss@extism.org"] license = "BSD-3-Clause" @@ -12,9 +12,9 @@ description = "Extism Plug-in Development Kit (PDK) for Rust" anyhow = "1" serde = { version = "1", features = ["derive"] } serde_json = "1" -extism-pdk-derive = {path = "./derive", version = "1.0.0-rc1"} -extism-manifest = {version = "0.5.0", optional = true} -extism-convert = { version = "0.2"} +extism-pdk-derive = {path = "./derive", version = "1.0.0"} +extism-manifest = {version = "1.0.0", optional = true} +extism-convert = { version = "1.0"} base64 = "0.21.0" [features] diff --git a/README.md b/README.md index 0161026..49f1503 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ cargo new --lib my-plugin Add the library from [crates.io](https://crates.io/crates/extism-pdk). ```bash -cargo add extism-pdk@1.0.0-rc1 +cargo add extism-pdk ``` 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): diff --git a/derive/Cargo.toml b/derive/Cargo.toml index 4334f8f..83cb4eb 100644 --- a/derive/Cargo.toml +++ b/derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "extism-pdk-derive" -version = "1.0.0-rc1" +version = "1.0.0" edition = "2021" authors = ["The Extism Authors", "oss@extism.org"] license = "BSD-3-Clause"