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

refactor(pragma): update solidity pragmas #426

Merged
merged 1 commit into from
Aug 23, 2023
Merged
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
2 changes: 1 addition & 1 deletion src/interfaces/IERC20.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.5.0;
pragma solidity >=0.6.2;

/// @title IERC20
/// @author Morpho Labs
Expand Down
2 changes: 1 addition & 1 deletion src/interfaces/IIrm.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.5.0;
pragma solidity >=0.6.2;

import {MarketParams, Market} from "./IMorpho.sol";

Expand Down
2 changes: 1 addition & 1 deletion src/interfaces/IMorpho.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.5.0;
pragma solidity >=0.8.8;

type Id is bytes32;

Expand Down
2 changes: 1 addition & 1 deletion src/interfaces/IMorphoCallbacks.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.5.0;
pragma solidity >=0.6.2;

/// @title IMorphoLiquidateCallback
/// @notice Interface that liquidators willing to use `liquidate`'s callback must implement.
Expand Down
2 changes: 1 addition & 1 deletion src/interfaces/IOracle.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.5.0;
pragma solidity >=0.6.2;

/// @title IOracle
/// @author Morpho Labs
Expand Down
2 changes: 1 addition & 1 deletion src/libraries/SafeTransferLib.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;
pragma solidity ^0.8.12;

import {ErrorsLib} from "../libraries/ErrorsLib.sol";

Expand Down