Skip to content

Commit 371b01c

Browse files
committed
Add missing Isqrt export
1 parent 773b4c3 commit 371b01c

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,10 @@ and this project adheres to
1212
instead of a list of bytes ([#1199]).
1313
- cosmwasm-std: Pin uint version to 0.9.1 in order to maintain a reasonably low
1414
MSRV.
15+
- cosmwasm-std: Add missing `Isqrt` export ([#1214]).
1516

1617
[#1199]: https://github.com/CosmWasm/cosmwasm/issues/1199
18+
[#1214]: https://github.com/CosmWasm/cosmwasm/issues/1214
1719

1820
## [1.0.0-beta4] - 2021-12-23
1921

packages/std/src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ pub use crate::iterator::Pair;
4343
#[cfg(feature = "iterator")]
4444
pub use crate::iterator::{Order, Record};
4545
pub use crate::math::{
46-
Decimal, Decimal256, Decimal256RangeExceeded, DecimalRangeExceeded, Fraction, Uint128, Uint256,
47-
Uint512, Uint64,
46+
Decimal, Decimal256, Decimal256RangeExceeded, DecimalRangeExceeded, Fraction, Isqrt, Uint128,
47+
Uint256, Uint512, Uint64,
4848
};
4949
pub use crate::query::{
5050
AllBalanceResponse, BalanceResponse, BankQuery, ContractInfoResponse, CustomQuery,

0 commit comments

Comments
 (0)