Skip to content

Commit b31e059

Browse files
authored
Fix version issue in lazer publisher and rust sdks (#2955)
1 parent fa901a6 commit b31e059

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lazer/publisher_sdk/rust/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pyth-lazer-publisher-sdk"
3-
version = "0.6.0"
3+
version = "0.7.0"
44
edition = "2021"
55
description = "Pyth Lazer Publisher SDK types."
66
license = "Apache-2.0"

lazer/sdk/rust/client/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pyth-lazer-client"
3-
version = "2.1.0"
3+
version = "4.0.0"
44
edition = "2021"
55
description = "A Rust client for Pyth Lazer"
66
license = "Apache-2.0"

target_chains/ethereum/entropy_sdk/solidity/IEntropy.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ interface IEntropy is EntropyEvents, EntropyEventsV2, IEntropyV2 {
5252
// The address calling this function should be a contract that inherits from the IEntropyConsumer interface.
5353
// The `entropyCallback` method on that interface will receive a callback with the generated random number.
5454
// `entropyCallback` will be run with the provider's default gas limit (see `getProviderInfo(provider).defaultGasLimit`).
55-
// If your callback needs additional gas, please use the function `requestv2` from `IEntropyV2` interface
55+
// If your callback needs additional gas, please use the function `requestv2` from `IEntropyV2` interface
5656
// with gasLimit as the input parameter.
5757
//
5858
// This method will revert unless the caller provides a sufficient fee (at least `getFee(provider)`) as msg.value.

0 commit comments

Comments
 (0)