@@ -6,6 +6,17 @@ and this project adheres to
6
6
7
7
## [ Unreleased]
8
8
9
+ ## [ 1.1.11] - 2023-10-18
10
+
11
+ ### Added
12
+
13
+ - Add ` WasmMsg::{Migrate, UpdateAdmin, ClearAdmin} ` ([ #19 ] ).
14
+ - Add ` memo ` to ` IbcMsg::Transfer ` ([ #19 ] ).
15
+ - Add ` env.transaction.hash ` ([ #19 ] ).
16
+ - Add ` admin ` to ` WasmMsg::Instantiate ` ([ #19 ] ).
17
+
18
+ [ #19 ] : https://github.com/scrtlabs/cosmwasm/pull/19
19
+
9
20
## [ 1.1.10] - 2023-05-08
10
21
11
22
### Fixed
@@ -15,7 +26,8 @@ and this project adheres to
15
26
16
27
### Changed
17
28
18
- - Change crates names back to support ` crates.io ` , while creating a compatability crates to support native libraries ([ #17 ] , [ #20 ] ).
29
+ - Change crates names back to support ` crates.io ` , while creating a
30
+ compatability crates to support native libraries ([ #17 ] , [ #20 ] ).
19
31
20
32
### Added
21
33
@@ -24,6 +36,14 @@ and this project adheres to
24
36
- Support for ` FinalizeTx ` ([ #15 ] , ([ #18 ] )).
25
37
- Support for SecretVRF ([ #16 ] ).
26
38
39
+ [ #13 ] : https://github.com/scrtlabs/cosmwasm/pull/13
40
+ [ #14 ] : https://github.com/scrtlabs/cosmwasm/pull/14
41
+ [ #15 ] : https://github.com/scrtlabs/cosmwasm/pull/15
42
+ [ #16 ] : https://github.com/scrtlabs/cosmwasm/pull/16
43
+ [ #17 ] : https://github.com/scrtlabs/cosmwasm/pull/17
44
+ [ #18 ] : https://github.com/scrtlabs/cosmwasm/pull/18
45
+ [ #20 ] : https://github.com/scrtlabs/cosmwasm/pull/20
46
+
27
47
## [ 1.1.9] - 2022-12-06
28
48
29
49
### Fixed
@@ -822,21 +842,21 @@ and this project adheres to
822
842
them more consistent with the behaviour of the Rust primitive types. Thank you
823
843
[ @yihuang ] for bringing this up and for the great implementation. ([ #853 ] )
824
844
1 . ` Uint128 ` got the new functions ` checked_add ` , ` checked_sub ` ,
825
- ` checked_mul ` , ` checked_div ` , ` checked_div_euclid ` , ` checked_rem ` ,
826
- ` wrapping_add ` , ` wrapping_sub ` , ` wrapping_mul ` , ` wrapping_pow ` ,
827
- ` saturating_add ` , ` saturating_sub ` , ` saturating_mul ` and ` saturating_pow `
828
- which match their equivalent in [ u128] except that instead of ` Option ` the
829
- checked methods return a ` Result ` with an ` OverflowError ` or
830
- ` DivideByZeroError ` that carries a few debug information and can directly
831
- be converted to ` StdError ` /` StdResult ` by using the ` ? ` operator.
845
+ ` checked_mul ` , ` checked_div ` , ` checked_div_euclid ` , ` checked_rem ` ,
846
+ ` wrapping_add ` , ` wrapping_sub ` , ` wrapping_mul ` , ` wrapping_pow ` ,
847
+ ` saturating_add ` , ` saturating_sub ` , ` saturating_mul ` and ` saturating_pow `
848
+ which match their equivalent in [ u128] except that instead of ` Option ` the
849
+ checked methods return a ` Result ` with an ` OverflowError ` or
850
+ ` DivideByZeroError ` that carries a few debug information and can directly
851
+ be converted to ` StdError ` /` StdResult ` by using the ` ? ` operator.
832
852
2 . ` StdError::Underflow ` and ` StdError::underflow ` were removed in favour of
833
- ` StdError::Overflow ` . ` StdError::DivideByZeroError ` was added.
834
- 3 . The ` - ` operator (` impl ops::Sub<Uint128> for Uint128 ` ) was removed
835
- because it returned a ` StdResult ` instead of panicking in the case of an
836
- overflow. This behaviour was inconsistent with ` + ` and the Rust standard
837
- library. Please use the explicit ` *_sub ` methods introduced above. In a
838
- couple of releases from now, we want to introduce the operator again with
839
- panicking overflow behaviour ([ #858 ] ).
853
+ ` StdError::Overflow ` . ` StdError::DivideByZeroError ` was added.
854
+ 3 . The ` - ` operator (` impl ops::Sub<Uint128> for Uint128 ` ) was removed because
855
+ it returned a ` StdResult ` instead of panicking in the case of an overflow.
856
+ This behaviour was inconsistent with ` + ` and the Rust standard library.
857
+ Please use the explicit ` *_sub ` methods introduced above. In a couple of
858
+ releases from now, we want to introduce the operator again with panicking
859
+ overflow behaviour ([ #858 ] ).
840
860
- cosmwasm-std: Replace ` HumanAddr ` with ` String ` in ` BankQuery ` , ` StakingQuery `
841
861
and ` WasmQuery ` query requests ([ #802 ] ).
842
862
- cosmwasm-std: In staking query response types ` Delegation ` , ` FullDelegation `
@@ -1556,7 +1576,8 @@ Some main points:
1556
1576
1557
1577
All future Changelog entries will reference this base
1558
1578
1559
- [ unreleased ] : https://github.com/CosmWasm/cosmwasm/compare/v1.1.10...HEAD
1579
+ [ unreleased ] : https://github.com/CosmWasm/cosmwasm/compare/v1.1.11...HEAD
1580
+ [ 1.1.11 ] : https://github.com/CosmWasm/cosmwasm/compare/v1.1.10...v1.1.11
1560
1581
[ 1.1.10 ] : https://github.com/CosmWasm/cosmwasm/compare/v1.1.9...v1.1.10
1561
1582
[ 1.1.9 ] : https://github.com/CosmWasm/cosmwasm/compare/v1.1.8...v1.1.9
1562
1583
[ 1.1.8 ] : https://github.com/CosmWasm/cosmwasm/compare/v1.1.6...v1.1.8
0 commit comments