Skip to content

Commit c820d3f

Browse files
committed
Update changelog
1 parent 2760384 commit c820d3f

File tree

1 file changed

+37
-16
lines changed

1 file changed

+37
-16
lines changed

CHANGELOG.md

Lines changed: 37 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,17 @@ and this project adheres to
66

77
## [Unreleased]
88

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+
920
## [1.1.10] - 2023-05-08
1021

1122
### Fixed
@@ -15,7 +26,8 @@ and this project adheres to
1526

1627
### Changed
1728

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]).
1931

2032
### Added
2133

@@ -24,6 +36,14 @@ and this project adheres to
2436
- Support for `FinalizeTx` ([#15], ([#18])).
2537
- Support for SecretVRF ([#16]).
2638

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+
2747
## [1.1.9] - 2022-12-06
2848

2949
### Fixed
@@ -822,21 +842,21 @@ and this project adheres to
822842
them more consistent with the behaviour of the Rust primitive types. Thank you
823843
[@yihuang] for bringing this up and for the great implementation. ([#853])
824844
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.
832852
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]).
840860
- cosmwasm-std: Replace `HumanAddr` with `String` in `BankQuery`, `StakingQuery`
841861
and `WasmQuery` query requests ([#802]).
842862
- cosmwasm-std: In staking query response types `Delegation`, `FullDelegation`
@@ -1556,7 +1576,8 @@ Some main points:
15561576

15571577
All future Changelog entries will reference this base
15581578

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
15601581
[1.1.10]: https://github.com/CosmWasm/cosmwasm/compare/v1.1.9...v1.1.10
15611582
[1.1.9]: https://github.com/CosmWasm/cosmwasm/compare/v1.1.8...v1.1.9
15621583
[1.1.8]: https://github.com/CosmWasm/cosmwasm/compare/v1.1.6...v1.1.8

0 commit comments

Comments
 (0)