Skip to content

Commit

Permalink
Merge pull request #42 from extism/release-1.0.0
Browse files Browse the repository at this point in the history
release: 1.0.0
  • Loading branch information
bhelx authored Jan 8, 2024
2 parents 5bef721 + d0dc0d4 commit 4b943cf
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "extism-pdk"
version = "1.0.0-rc1"
version = "1.0.0"
edition = "2021"
authors = ["The Extism Authors", "[email protected]"]
license = "BSD-3-Clause"
Expand All @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down
2 changes: 1 addition & 1 deletion derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "extism-pdk-derive"
version = "1.0.0-rc1"
version = "1.0.0"
edition = "2021"
authors = ["The Extism Authors", "[email protected]"]
license = "BSD-3-Clause"
Expand Down

0 comments on commit 4b943cf

Please sign in to comment.