Skip to content

Commit

Permalink
Release v0.9.0 (#71)
Browse files Browse the repository at this point in the history
* Add `description` field to `core` and `runtime` crates

* Add symlink from crates to top level `wit` folder

When we try and publish the crates the relative path doesn't get
resolved correctly. Instead we add a symlink in each crate, which is
typically the default location `witgen` looks for `wit` folders anyways.

* Pre-populate release version for `core` in `runtime` TOML
  • Loading branch information
HCastano authored Apr 24, 2024
1 parent 610877e commit 0e9d393
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
[package]
name = "entropy-programs-core"
version = "0.1.0"
version = "0.9.0"
authors = ["Entropy Cryptography <[email protected]>"]
homepage = "https://entropy.xyz/"
license = "AGPL-3.0-or-later"
repository = "https://github.com/entropyxyz/programs"
edition = "2021"
description = "Core traits and types for building programs on the Entropy network."

[dependencies]
getrandom = { version = "0.2", default-features = false, features = ["custom"] }
Expand Down
1 change: 0 additions & 1 deletion core/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
pub mod bindgen {
wit_bindgen::generate!({
world: "program",
path: "../wit/application.wit",
macro_export
});
}
Expand Down
1 change: 1 addition & 0 deletions core/wit
2 changes: 1 addition & 1 deletion runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ edition = "2021"

[dependencies]
wasmtime = { version = "12.0.1", features = ["component-model"] }
entropy-programs-core = { path = "../core" }
entropy-programs-core = { version = "0.9.0", path = "../core" }
thiserror = "1.0.47"

[dev-dependencies]
Expand Down
1 change: 0 additions & 1 deletion runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ mod bindgen {

bindgen!({
world: "program",
path: "../wit/application.wit"
});
}
pub use bindgen::{Error as ProgramError, Program, SignatureRequest};
Expand Down
1 change: 1 addition & 0 deletions runtime/wit

0 comments on commit 0e9d393

Please sign in to comment.