Skip to content

Commit bd5ebe5

Browse files
committed
Remove export of ExternalApi, ExternalQuerier and ExternalStorage
1 parent 80fe0be commit bd5ebe5

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,9 @@ and this project adheres to
7575
- cosmwasm-std: source_client instead of channel_id in IBCv2 - ([#2450])
7676
- cosmwasm-std: Remove previously deprecated `IbcQuery::ListChannels` and
7777
`ListChannelsResponse`. ([#2223])
78+
- cosmwasm-std: Remove export of `ExternalApi`, `ExternalQuerier` and
79+
`ExternalStorage` as those are only needed by export implementations in
80+
cosmwasm-std. ([#2467])
7881

7982
## Fixed
8083

@@ -114,6 +117,7 @@ and this project adheres to
114117
[#2450]: https://github.com/CosmWasm/cosmwasm/pull/2450
115118
[#2454]: https://github.com/CosmWasm/cosmwasm/pull/2454
116119
[#2458]: https://github.com/CosmWasm/cosmwasm/pull/2458
120+
[#2467]: https://github.com/CosmWasm/cosmwasm/pull/2467
117121

118122
## [2.2.0] - 2024-12-17
119123

packages/std/src/lib.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,8 +137,6 @@ pub use crate::exports::{
137137
do_ibc_channel_close, do_ibc_channel_connect, do_ibc_channel_open, do_ibc_packet_ack,
138138
do_ibc_packet_receive, do_ibc_packet_timeout,
139139
};
140-
#[cfg(target_arch = "wasm32")]
141-
pub use crate::imports::{ExternalApi, ExternalQuerier, ExternalStorage};
142140

143141
/// Exposed for testing only
144142
/// Both unit tests and integration tests are compiled to native code, so everything in here does not need to compile to Wasm.

0 commit comments

Comments
 (0)