Skip to content

Commit

Permalink
Merge pull request #128 from ston-fi/upstream-0.22.4
Browse files Browse the repository at this point in the history
Upstream 0.22.4
  • Loading branch information
Sild authored Dec 13, 2024
2 parents 2e80a2f + 17d8f31 commit 8e241d3
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 8 deletions.
30 changes: 27 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,31 +1,45 @@
### v0.19.3

* Resolve be-1426 "use lite to adjust init block"
* Ni: add-get-account-state-by-transaction
* Impl #be-1317: serialize_dict
* Impl #be-1412: partialeq for invalidmesage

### v0.20.0

* Impl #be-1604: update_recent_init_block on tonlib client init
* Impl #be-1441: improve dict load/store

### v0.20.1

* Fix dependency pinning

### v0.20.2
* Impl #be-1619: technical release

* Impl #be-1619: technical release

### v0.20.3

* Impl #be-1464: read dict key TonHash in BE format

### v0.21.0

### v0.21.1

* Impl #BE-1662: Limited get raw txs
* Expose emulator_set_verbosity_level, enabling ability to keep application log dry (#115)
* Impl #BE-1620: More strict dictionary handling
* Impl #BE-1624: Support wallet v5r1
* Impl #BE-1660: made LiteServerInfo fields public
* Impl #BE-1386: Fix handling null instead of dict in TvmStackEntry
* Impl #BE-1625: moved tx hash mismatch handling in factory cache
* Impl #BE-1625: moved tx hash mismatch handling in factory cache
* Impl #be-1742: fix read_collection_metadata_content for internal
* Impl #ni: update tvm integration tests
* Impl #ni: tvmemulator cleanup
* Bump tonlib-sys to 2024.10.2

### v0.22.2

* Impl #be-1430: config path via environment variable
* Impl #be-1708: added cmp for tonaddress
* Impl #be-1785: removed state_cache feature
Expand All @@ -34,9 +48,19 @@
* Ni: added into_single_root method
* Ni: bump thiserror dependency version
* Iml #be-1761: fix memory leak in emulator

### v0.22.1
* added From<TonHash> for [u8; TON_HASH_LEN]

* added From<TonHash> for [u8; TON_HASH_LEN]

### v0.22.2

* Bump tonlib-sys

### v0.22.3

* Impl #be-1820: rm unwrap from jettonmetadata conversion

### v0.22.4

* make pub TvmEmulatorUnsafe
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ resolver = "2"


[workspace.package]
version = "0.22.3"
version = "0.22.4"
edition = "2021"
description = "Rust SDK for The Open Network"
license = "MIT"
Expand Down
5 changes: 2 additions & 3 deletions client/src/emulator.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
mod tvm_emulator_unsafe;
mod utils;

pub mod c7_register;
pub mod error;
pub mod tvm_emulator;
pub mod tvm_emulator_unsafe; // is used by external clients on it's own, don't make private
pub mod types;
mod utils;
1 change: 0 additions & 1 deletion client/src/emulator/tvm_emulator_unsafe.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ impl TvmEmulatorUnsafe {
}
}

#[allow(unused)]
pub fn set_global_verbosity_level(&mut self, level: u32) -> Result<bool, TvmEmulatorError> {
let success: bool = unsafe { emulator_set_verbosity_level(level) };
Ok(success)
Expand Down

0 comments on commit 8e241d3

Please sign in to comment.