Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump cosmwasm-std from 1.1.9 to 1.3.0 #191

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ jobs:
if: env.GIT_DIFF
uses: actions-rs/[email protected]
with:
version: 0.22.0
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

action-rs/tarpaulin now has the issue on coverage report. The latest available version is 0.22.0
actions-rs/tarpaulin#15 (comment)

args: '--avoid-cfg-tarpaulin'

- name: Upload coverage 📤
Expand Down
49 changes: 16 additions & 33 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ members = [

[workspace.dependencies]
# Cosmwasm related dependencies
cosmwasm-std = "1.1.9"
cosmwasm-std = "1.3.0"
cosmwasm-storage = "1.1.9"
cosmwasm-schema = "1.2.7"
cw-storage-plus = "0.16.0"
Expand Down
8 changes: 4 additions & 4 deletions contracts/poap-manager/src/contract.rs
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ mod tests {
assert_eq!(
instantiate(deps.as_mut(), env, info, invalid_msg).unwrap_err(),
ContractError::Std(StdError::generic_err(
"Invalid input: human address too short"
"Invalid input: human address too short for this mock implementation (must be >= 3)."
))
)
}
Expand Down Expand Up @@ -422,7 +422,7 @@ mod tests {
assert_eq!(
execute(deps.as_mut(), env, info, msg).unwrap_err(),
ContractError::Std(StdError::generic_err(
"Invalid input: human address too short"
"Invalid input: human address too short for this mock implementation (must be >= 3)."
))
)
}
Expand Down Expand Up @@ -454,7 +454,7 @@ mod tests {
assert_eq!(
execute(deps.as_mut(), env, info, msg).unwrap_err(),
ContractError::Std(StdError::generic_err(
"Invalid input: human address too short"
"Invalid input: human address too short for this mock implementation (must be >= 3)."
))
)
}
Expand Down Expand Up @@ -488,7 +488,7 @@ mod tests {
assert_eq!(
execute(deps.as_mut(), env, info, msg).unwrap_err(),
ContractError::Std(StdError::generic_err(
"Invalid input: human address too short"
"Invalid input: human address too short for this mock implementation (must be >= 3)."
))
)
}
Expand Down
4 changes: 2 additions & 2 deletions contracts/remarkables/src/contract.rs
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,7 @@ mod tests {
assert_eq!(
instantiate(deps.as_mut(), env, info, invalid_msg).unwrap_err(),
ContractError::Std(StdError::generic_err(
"Invalid input: human address too short"
"Invalid input: human address too short for this mock implementation (must be >= 3)."
))
)
}
Expand Down Expand Up @@ -928,7 +928,7 @@ mod tests {
assert_eq!(
execute(deps.as_mut(), env, info, msg).unwrap_err(),
ContractError::Std(StdError::generic_err(
"Invalid input: human address too short"
"Invalid input: human address too short for this mock implementation (must be >= 3)."
))
)
}
Expand Down
4 changes: 2 additions & 2 deletions contracts/tips/src/contract.rs
Original file line number Diff line number Diff line change
Expand Up @@ -750,7 +750,7 @@ mod tests {

assert_eq!(
ContractError::Std(StdError::generic_err(
"Invalid input: human address too short"
"Invalid input: human address too short for this mock implementation (must be >= 3)."
)),
tip_error
);
Expand Down Expand Up @@ -1589,7 +1589,7 @@ mod tests {

assert_eq!(
ContractError::Std(StdError::generic_err(
"Invalid input: human address too short"
"Invalid input: human address too short for this mock implementation (must be >= 3)."
)),
error
);
Expand Down
Loading