Skip to content

Commit

Permalink
Hide lookup_set module and add a CHANGELOG entry
Browse files Browse the repository at this point in the history
  • Loading branch information
itegulov committed Dec 2, 2021
1 parent cb3f305 commit fa2180f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
- This is only a breaking change if inspecting the `VmAction`s of receipts in mocked environments. All other changes are positional argument names.
- Add consts for near, yocto, and tgas. [PR 640](https://github.com/near/near-sdk-rs/pull/640).
- `near_sdk::ONE_NEAR`, `near_sdk::ONE_YOCTO`, `near_sdk::Gas::ONE_TERA`
- store: Implement caching `LookupSet` type. This is the new iteration of the previous version of `near_sdk::collections::LookupSet` that has an updated API, and is located at `near_sdk::store::LookupSet`. [PR 654](https://github.com/near/near-sdk-rs/pull/654).

## `4.0.0-pre.4` [10-15-2021]
- Unpin `syn` dependency in macros from `=1.0.57` to be more composable with other crates. [PR 605](https://github.com/near/near-sdk-rs/pull/605)
Expand Down
2 changes: 1 addition & 1 deletion near-sdk/src/store/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ pub use vec::Vector;
pub mod lookup_map;
pub use self::lookup_map::LookupMap;

pub mod lookup_set;
mod lookup_set;
pub use self::lookup_set::LookupSet;

pub mod unordered_map;
Expand Down

0 comments on commit fa2180f

Please sign in to comment.