Skip to content

Commit 0e48309

Browse files
authored
Merge pull request #1780 from CosmWasm/merge-1-3
Merge `release/1.3` into `main`
2 parents a23ff66 + 8421fb9 commit 0e48309

File tree

31 files changed

+200
-107
lines changed

31 files changed

+200
-107
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ and this project adheres to
2020
[#1667]: https://github.com/CosmWasm/cosmwasm/pull/1667
2121
[#1677]: https://github.com/CosmWasm/cosmwasm/pull/1677
2222

23-
## [1.3.0-rc.0] - 2023-07-03
23+
## [1.3.0] - 2023-07-17
2424

2525
### Fixed
2626

@@ -1793,7 +1793,7 @@ Some main points:
17931793
All future Changelog entries will reference this base
17941794

17951795
[unreleased]: https://github.com/CosmWasm/cosmwasm/compare/v1.3.0-rc.0...HEAD
1796-
[1.3.0-rc.0]: https://github.com/CosmWasm/cosmwasm/compare/v1.2.7...v1.3.0-rc.0
1796+
[1.3.0]: https://github.com/CosmWasm/cosmwasm/compare/v1.2.7...v1.3.0
17971797
[1.2.7]: https://github.com/CosmWasm/cosmwasm/compare/v1.2.6...v1.2.7
17981798
[1.2.6]: https://github.com/CosmWasm/cosmwasm/compare/v1.2.5...v1.2.6
17991799
[1.2.5]: https://github.com/CosmWasm/cosmwasm/compare/v1.2.4...v1.2.5

Cargo.lock

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

contracts/burner/Cargo.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

contracts/crypto-verify/Cargo.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

contracts/cyberpunk/Cargo.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

contracts/cyberpunk/src/msg.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
use cosmwasm_schema::{cw_serde, QueryResponses};
2-
use cosmwasm_std::DenomMetadata;
32

43
#[cw_serde]
54
pub enum ExecuteMsg {
@@ -41,10 +40,10 @@ pub enum QueryMsg {
4140
MirrorEnv {},
4241

4342
/// Queries `AllDenomMetadata` from the bank module repeatedly and returns all entries
44-
#[returns(Vec<DenomMetadata>)]
43+
#[returns(Vec<cosmwasm_std::DenomMetadata>)]
4544
Denoms {},
4645

4746
/// Queries `DenomMetadata` from the bank module and returns the result
48-
#[returns(DenomMetadata)]
47+
#[returns(cosmwasm_std::DenomMetadata)]
4948
Denom { denom: String },
5049
}

contracts/floaty/Cargo.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

contracts/hackatom/Cargo.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)