diff --git a/Cargo.lock b/Cargo.lock index 4d92187..b51df5d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -522,7 +522,7 @@ checksum = "8d696c370c750c948ada61c69a0ee2cbbb9c50b1019ddb86d9317157a99c2cae" [[package]] name = "bonfida-autobindings" -version = "0.4.3" +version = "0.4.4" dependencies = [ "anchor-syn", "cargo_toml", @@ -538,7 +538,7 @@ dependencies = [ [[package]] name = "bonfida-autodoc" -version = "0.4.3" +version = "0.4.4" dependencies = [ "clap 3.2.25", "convert_case", @@ -550,7 +550,7 @@ dependencies = [ [[package]] name = "bonfida-autoproject" -version = "0.4.3" +version = "0.4.4" dependencies = [ "clap 3.2.25", "convert_case", @@ -563,7 +563,7 @@ dependencies = [ [[package]] name = "bonfida-benchviz" -version = "0.4.3" +version = "0.4.4" dependencies = [ "bonfida-utils", "clap 3.2.25", @@ -575,7 +575,7 @@ dependencies = [ [[package]] name = "bonfida-cli" -version = "0.4.3" +version = "0.4.4" dependencies = [ "bonfida-autobindings", "bonfida-autodoc", @@ -586,7 +586,7 @@ dependencies = [ [[package]] name = "bonfida-macros" -version = "0.4.3" +version = "0.4.4" dependencies = [ "proc-macro2 1.0.67", "quote 1.0.33", @@ -597,7 +597,7 @@ dependencies = [ [[package]] name = "bonfida-test-utils" -version = "0.4.3" +version = "0.4.4" dependencies = [ "async-trait", "solana-program", @@ -609,7 +609,7 @@ dependencies = [ [[package]] name = "bonfida-utils" -version = "0.4.3" +version = "0.4.4" dependencies = [ "bonfida-macros", "borsh 0.10.3", diff --git a/crates/autobindings/Cargo.toml b/crates/autobindings/Cargo.toml index 2bc8338..a692109 100644 --- a/crates/autobindings/Cargo.toml +++ b/crates/autobindings/Cargo.toml @@ -2,7 +2,7 @@ name = "bonfida-autobindings" description = "Utility to generate JavaScript and python bindings for Solana smart contracts following the Bonfida code conventions" license = "MIT" -version = "0.4.3" +version = "0.4.4" authors = ["ellttBen "] edition = "2018" repository = "https://github.com/Bonfida/bonfida-utils.git" diff --git a/crates/autodoc/Cargo.toml b/crates/autodoc/Cargo.toml index d0d8f28..56d2960 100644 --- a/crates/autodoc/Cargo.toml +++ b/crates/autodoc/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "bonfida-autodoc" description = "Utility to generate documentation for Solana Program instructions" -version = "0.4.3" +version = "0.4.4" license = "MIT" edition = "2021" repository = "https://github.com/Bonfida/bonfida-utils.git" diff --git a/crates/autoproject/Cargo.toml b/crates/autoproject/Cargo.toml index 5862879..65dc71f 100644 --- a/crates/autoproject/Cargo.toml +++ b/crates/autoproject/Cargo.toml @@ -2,7 +2,7 @@ name = "bonfida-autoproject" description = "Utility to generate a solana smart contract template" license = "MIT" -version = "0.4.3" +version = "0.4.4" authors = ["Lcchy "] edition = "2018" repository = "https://github.com/Bonfida/bonfida-utils.git" diff --git a/crates/benchviz/Cargo.toml b/crates/benchviz/Cargo.toml index 9cd3a5f..c0efe86 100644 --- a/crates/benchviz/Cargo.toml +++ b/crates/benchviz/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bonfida-benchviz" -version = "0.4.3" +version = "0.4.4" description = "Utility for visualizing Solana Program benchmark results" license = "MIT" edition = "2021" @@ -13,5 +13,5 @@ gnuplot = "0.0.37" serde = {version = "1", features = ["derive"]} serde_json = "1" regex = "1" -bonfida-utils = {version = "0.4.3", path="../utils", features = ["benchmarking"]} +bonfida-utils = {version = "0.4.4", path="../utils", features = ["benchmarking"]} clap = {version = "3.2.6", features = ["cargo"]} diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index 8eb8967..581dba8 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bonfida-cli" -version = "0.4.3" +version = "0.4.4" description = "Bonfida CLI utilities for Solana development" license = "MIT" edition = "2021" @@ -10,10 +10,10 @@ repository = "https://github.com/Bonfida/bonfida-utils.git" [dependencies] clap = "3.2.6" -bonfida-autobindings = {version = "0.4.3", path="../autobindings"} -bonfida-autodoc = {version = "0.4.3", path="../autodoc"} -bonfida-autoproject = {version = "0.4.3", path="../autoproject"} -bonfida-benchviz = {version = "0.4.3", path="../benchviz"} +bonfida-autobindings = {version = "0.4.4", path="../autobindings"} +bonfida-autodoc = {version = "0.4.4", path="../autodoc"} +bonfida-autoproject = {version = "0.4.4", path="../autoproject"} +bonfida-benchviz = {version = "0.4.4", path="../benchviz"} [[bin]] name = "bonfida" diff --git a/crates/macros/Cargo.toml b/crates/macros/Cargo.toml index 9540a72..f28adef 100644 --- a/crates/macros/Cargo.toml +++ b/crates/macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bonfida-macros" -version = "0.4.3" +version = "0.4.4" authors = ["ellttBen "] edition = "2018" description = "Bonfida-utils macros" diff --git a/crates/test-utils/Cargo.toml b/crates/test-utils/Cargo.toml index 260e6c4..b4a4e81 100644 --- a/crates/test-utils/Cargo.toml +++ b/crates/test-utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bonfida-test-utils" -version = "0.4.3" +version = "0.4.4" authors = ["ellttBen "] description = "Solana program testing utilities when working with bonfida-utils." license = "MIT" diff --git a/crates/utils/Cargo.toml b/crates/utils/Cargo.toml index a9c194b..43db391 100644 --- a/crates/utils/Cargo.toml +++ b/crates/utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bonfida-utils" -version = "0.4.3" +version = "0.4.4" authors = ["ellttBen "] description = "Various solana program writing utilities in use by Bonfida." license = "MIT" @@ -17,7 +17,7 @@ benchmarking = ["lazy_static", "regex", "serde", "serde_json"] borsh = "0.10.3" solana-program = "1.16.16" pyth-sdk-solana = "0.4.0" -bonfida-macros = {version = "0.4.3", path = "../macros"} +bonfida-macros = {version = "0.4.4", path = "../macros"} bytemuck = "1.9.1" lazy_static = {version = "1.4.0", optional=true} regex = {version = "1.5.5", optional=true}