Skip to content

Commit

Permalink
chore: Release
Browse files Browse the repository at this point in the history
  • Loading branch information
gfusee committed Apr 8, 2024
1 parent 02bc283 commit f39b61b
Show file tree
Hide file tree
Showing 9 changed files with 28 additions and 28 deletions.
16 changes: 8 additions & 8 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion abi-build/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "novax-abi-build"
version = "0.1.4"
version = "0.1.5"
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"
Expand Down
4 changes: 2 additions & 2 deletions caching/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "novax-caching"
version = "0.1.4"
version = "0.1.5"
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."
Expand All @@ -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.4" }
novax = { path = "../core", version = "0.1.5" }

[dev-dependencies]
thread_local = "1.1.7"
8 changes: 4 additions & 4 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "novax"
version = "0.1.4"
version = "0.1.5"
edition = "2021"
license = "GPL-3.0-only"
readme = "README.md"
Expand All @@ -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.4" }
novax-executor = { path = "../executor", version = "0.1.4" }
novax-data = { path = "../data", version = "0.1.5" }
novax-executor = { path = "../executor", version = "0.1.5" }
num-bigint = { version = "0.4.3", features = ["serde"] }
async-trait = "0.1.72"
serde = "1.0.177"
Expand All @@ -32,4 +32,4 @@ reqwest = "0.11.18"
hex = "0.4.3"

[build-dependencies]
novax-abi-build = { path = "../abi-build", version = "0.1.4" }
novax-abi-build = { path = "../abi-build", version = "0.1.5" }
2 changes: 1 addition & 1 deletion data/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "novax-data"
version = "0.1.4"
version = "0.1.5"
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."
Expand Down
6 changes: 3 additions & 3 deletions executor/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "novax-executor"
version = "0.1.4"
version = "0.1.5"
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."
Expand All @@ -16,8 +16,8 @@ serde = "1.0.183"
serde_json = "1.0.108"
hex = "0.4.3"
base64 = "0.21.3"
novax-data = { path = "../data", version = "0.1.4" }
novax-request = { path = "../request", version = "0.1.4" }
novax-data = { path = "../data", version = "0.1.5" }
novax-request = { path = "../request", version = "0.1.5" }
multiversx-sc = "=0.47.5"
multiversx-sc-scenario = "=0.47.5"
multiversx-sdk = "=0.3.2"
Expand Down
8 changes: 4 additions & 4 deletions mocking/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "novax-mocking"
version = "0.1.4"
version = "0.1.5"
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."
Expand All @@ -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.4" }
novax-token = { path = "../token", version = "0.1.4" }
novax-executor = { path = "../executor", version = "0.1.4" }
novax = { path = "../core", version = "0.1.5" }
novax-token = { path = "../token", version = "0.1.5" }
novax-executor = { path = "../executor", version = "0.1.5" }
multiversx-sc = "=0.47.5"
multiversx-sc-snippets = "=0.47.5"
multiversx-sdk = "=0.3.2"
Expand Down
2 changes: 1 addition & 1 deletion request/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "novax-request"
version = "0.1.4"
version = "0.1.5"
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."
Expand Down
8 changes: 4 additions & 4 deletions token/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "novax-token"
version = "0.1.4"
version = "0.1.5"
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."
Expand All @@ -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.4" }
novax-data = { path = "../data", version = "0.1.4" }
novax-request = { path = "../request", version = "0.1.4" }
novax = { path = "../core", version = "0.1.5" }
novax-data = { path = "../data", version = "0.1.5" }
novax-request = { path = "../request", version = "0.1.5" }
num-bigint = "0.4.4"
async-trait = "0.1.73"
multiversx-sc = "=0.47.5"
Expand Down

0 comments on commit f39b61b

Please sign in to comment.