diff --git a/Cargo.lock b/Cargo.lock index 44fba48..f0e8677 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -321,7 +321,7 @@ checksum = "2382f75942f4b3be3690fe4f86365e9c853c1587d6ee58212cebf6e2a9ccd101" [[package]] name = "contract-meta" -version = "0.1.7-beta.1" +version = "0.1.7-beta.2" dependencies = [ "multiversx-sc-meta", "tester-contract", @@ -1359,7 +1359,7 @@ dependencies = [ [[package]] name = "novax" -version = "0.1.7-beta.1" +version = "0.1.7-beta.2" dependencies = [ "async-trait", "hex", @@ -1381,7 +1381,7 @@ dependencies = [ [[package]] name = "novax-abi-build" -version = "0.1.7-beta.1" +version = "0.1.7-beta.2" dependencies = [ "convert_case", "prettyplease", @@ -1395,7 +1395,7 @@ dependencies = [ [[package]] name = "novax-caching" -version = "0.1.7-beta.1" +version = "0.1.7-beta.2" dependencies = [ "async-trait", "novax", @@ -1407,7 +1407,7 @@ dependencies = [ [[package]] name = "novax-data" -version = "0.1.7-beta.1" +version = "0.1.7-beta.2" dependencies = [ "base64 0.21.7", "multiversx-sc", @@ -1420,7 +1420,7 @@ dependencies = [ [[package]] name = "novax-executor" -version = "0.1.7-beta.1" +version = "0.1.7-beta.2" dependencies = [ "async-trait", "base64 0.21.7", @@ -1442,7 +1442,7 @@ dependencies = [ [[package]] name = "novax-mocking" -version = "0.1.7-beta.1" +version = "0.1.7-beta.2" dependencies = [ "async-trait", "base64 0.21.7", @@ -1463,7 +1463,7 @@ dependencies = [ [[package]] name = "novax-request" -version = "0.1.7-beta.1" +version = "0.1.7-beta.2" dependencies = [ "async-trait", "http 1.1.0", @@ -1473,7 +1473,7 @@ dependencies = [ [[package]] name = "novax-token" -version = "0.1.7-beta.1" +version = "0.1.7-beta.2" dependencies = [ "async-trait", "base64 0.21.7", @@ -2303,7 +2303,7 @@ dependencies = [ [[package]] name = "tester-contract" -version = "0.1.7-beta.1" +version = "0.1.7-beta.2" dependencies = [ "multiversx-sc", "multiversx-sc-scenario", diff --git a/abi-build/Cargo.toml b/abi-build/Cargo.toml index 2dea6cd..3ed3d8b 100644 --- a/abi-build/Cargo.toml +++ b/abi-build/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "novax-abi-build" -version = "0.1.7-beta.1" +version = "0.1.7-beta.2" edition = "2021" description = "A build-dependency crate for 'nova' which hosts macros and utilities for generating client code based on smart contract ABIs. It facilitates the automated creation of interfaces, types, and implementations for interacting with blockchain contracts." license = "GPL-3.0-only" diff --git a/caching/Cargo.toml b/caching/Cargo.toml index e8ef89f..3d6fd8b 100644 --- a/caching/Cargo.toml +++ b/caching/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "novax-caching" -version = "0.1.7-beta.1" +version = "0.1.7-beta.2" edition = "2021" license = "GPL-3.0-only" description = "An auxiliary crate within the NovaX framework that provides caching functionalities to optimize and enhance the performance of blockchain interactions." @@ -13,7 +13,7 @@ serde = "1.0.180" rmp-serde = "1.1.2" tokio = "1.29.1" async-trait = "0.1.72" -novax = { path = "../core", version = "0.1.7-beta.1" } +novax = { path = "../core", version = "0.1.7-beta.2" } [dev-dependencies] thread_local = "1.1.7" diff --git a/core/Cargo.toml b/core/Cargo.toml index e9bbaea..ec009af 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "novax" -version = "0.1.7-beta.1" +version = "0.1.7-beta.2" edition = "2021" license = "GPL-3.0-only" readme = "README.md" @@ -15,8 +15,8 @@ ci = ["novax-abi-build/no-fmt-output"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -novax-data = { path = "../data", version = "0.1.7-beta.1" } -novax-executor = { path = "../executor", version = "0.1.7-beta.1" } +novax-data = { path = "../data", version = "0.1.7-beta.2" } +novax-executor = { path = "../executor", version = "0.1.7-beta.2" } num-bigint = { version = "0.4.3", features = ["serde"] } async-trait = "0.1.72" serde = "1.0.177" @@ -32,4 +32,4 @@ reqwest = "0.11.18" hex = "0.4.3" [build-dependencies] -novax-abi-build = { path = "../abi-build", version = "0.1.7-beta.1" } +novax-abi-build = { path = "../abi-build", version = "0.1.7-beta.2" } diff --git a/data/Cargo.toml b/data/Cargo.toml index 6303d5b..00f13ff 100644 --- a/data/Cargo.toml +++ b/data/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "novax-data" -version = "0.1.7-beta.1" +version = "0.1.7-beta.2" edition = "2021" license = "GPL-3.0-only" description = "A foundational crate for the NovaX framework, providing essential data types and conversions necessary for working with smart contracts and blockchain interactions." diff --git a/executor/Cargo.toml b/executor/Cargo.toml index ad7328a..b3f86e9 100644 --- a/executor/Cargo.toml +++ b/executor/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "novax-executor" -version = "0.1.7-beta.1" +version = "0.1.7-beta.2" edition = "2021" license = "GPL-3.0-only" description = "Part of the NovaX framework, this crate facilitates the execution of transactions and queries against smart contracts on the blockchain." @@ -19,8 +19,8 @@ hex = "0.4.3" base64 = "0.21.3" sha3 = "0.10.8" pem = "3.0.4" -novax-data = { path = "../data", version = "0.1.7-beta.1" } -novax-request = { path = "../request", version = "0.1.7-beta.1" } +novax-data = { path = "../data", version = "0.1.7-beta.2" } +novax-request = { path = "../request", version = "0.1.7-beta.2" } multiversx-sc = "0.50.3" multiversx-sc-scenario = "0.50.3" multiversx-sdk = "0.4.1" diff --git a/mocking/Cargo.toml b/mocking/Cargo.toml index 36f6d95..e5b5ece 100644 --- a/mocking/Cargo.toml +++ b/mocking/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "novax-mocking" -version = "0.1.7-beta.1" +version = "0.1.7-beta.2" edition = "2021" license = "GPL-3.0-only" description = "The `novax-mocking` crate is a part of the Nova framework, providing utilities to simulate blockchain environments. It facilitates the creation of a `MockExecutor` and other simulated entities, enabling easy testing and development against smart contract interactions within a controlled, replicated blockchain scenario." @@ -12,9 +12,9 @@ repository = "https://github.com/gfusee/novax" num-bigint = "0.4.3" async-trait = "0.1.72" tokio = "1.30.0" -novax = { path = "../core", version = "0.1.7-beta.1" } -novax-token = { path = "../token", version = "0.1.7-beta.1" } -novax-executor = { path = "../executor", version = "0.1.7-beta.1" } +novax = { path = "../core", version = "0.1.7-beta.2" } +novax-token = { path = "../token", version = "0.1.7-beta.2" } +novax-executor = { path = "../executor", version = "0.1.7-beta.2" } multiversx-sc = "0.50.3" multiversx-sc-snippets = "0.50.3" multiversx-sdk = "0.4.1" diff --git a/request/Cargo.toml b/request/Cargo.toml index 540ee3e..22bbdde 100644 --- a/request/Cargo.toml +++ b/request/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "novax-request" -version = "0.1.7-beta.1" +version = "0.1.7-beta.2" edition = "2021" license = "GPL-3.0-only" description = "The `novax-request` crate serves as an abstraction layer for request clients, enabling mocking or actual interactions with blockchain gateway APIs. Its primary utility is within other Nova crates like `novax-token`, providing a standardized interface for handling requests, thereby promoting ease of testing and consistency across different blockchain interaction scenarios." diff --git a/tester/contract/Cargo.toml b/tester/contract/Cargo.toml index 85ad877..e70c148 100644 --- a/tester/contract/Cargo.toml +++ b/tester/contract/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tester-contract" -version = "0.1.7-beta.1" +version = "0.1.7-beta.2" authors = ["you"] edition = "2021" publish = false diff --git a/tester/contract/meta/Cargo.toml b/tester/contract/meta/Cargo.toml index 15d6536..aa8b120 100644 --- a/tester/contract/meta/Cargo.toml +++ b/tester/contract/meta/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "contract-meta" -version = "0.1.7-beta.1" +version = "0.1.7-beta.2" edition = "2021" publish = false diff --git a/token/Cargo.toml b/token/Cargo.toml index 867770c..ab9bcaf 100644 --- a/token/Cargo.toml +++ b/token/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "novax-token" -version = "0.1.7-beta.1" +version = "0.1.7-beta.2" edition = "2021" license = "GPL-3.0-only" description = "The `novax-token` crate offers utilities for retrieving token information from the blockchain, such as querying address balances, token metadata, and other related operations. By encapsulating the logic for interacting with token-related blockchain features, `novax-token` simplifies the process of querying and managing tokens within decentralized applications, making it a valuable tool for developers working with blockchain tokens and assets." @@ -12,9 +12,9 @@ repository = "https://github.com/gfusee/novax" serde = "1.0.188" serde_json = "1.0.105" hex = "0.4.3" -novax = { path = "../core", version = "0.1.7-beta.1" } -novax-data = { path = "../data", version = "0.1.7-beta.1" } -novax-request = { path = "../request", version = "0.1.7-beta.1" } +novax = { path = "../core", version = "0.1.7-beta.2" } +novax-data = { path = "../data", version = "0.1.7-beta.2" } +novax-request = { path = "../request", version = "0.1.7-beta.2" } num-bigint = "0.4.4" async-trait = "0.1.73" multiversx-sc = "0.50.3"