Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 1.0.0 rc1 #39

Merged
merged 2 commits into from
Nov 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 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-beta.0"
version = "1.0.0-rc1"
edition = "2021"
authors = ["The Extism Authors", "[email protected]"]
license = "BSD-3-Clause"
Expand All @@ -12,7 +12,7 @@ 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-beta.0"}
extism-pdk-derive = {path = "./derive", version = "1.0.0-rc1"}
extism-manifest = {version = "0.5.0", optional = true}
extism-convert = { version = "0.2"}
base64 = "0.21.0"
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 [email protected]beta.0
cargo add [email protected]rc1
```

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-beta.0"
version = "1.0.0-rc1"
edition = "2021"
authors = ["The Extism Authors", "[email protected]"]
license = "BSD-3-Clause"
Expand Down
Loading