Skip to content

Commit

Permalink
feat!: migrate to 0.8.25
Browse files Browse the repository at this point in the history
  • Loading branch information
kkirka authored and chechu committed Apr 10, 2024
1 parent eec9785 commit 88b12ce
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion contracts/ExponentialNoError.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: BSD-3-Clause
pragma solidity 0.8.13;
pragma solidity 0.8.25;

import { EXP_SCALE as EXP_SCALE_, MANTISSA_ONE as MANTISSA_ONE_ } from "./constants.sol";

Expand Down
2 changes: 1 addition & 1 deletion contracts/MaxLoopsLimitHelper.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: BSD-3-Clause
pragma solidity 0.8.13;
pragma solidity 0.8.25;

/**
* @title MaxLoopsLimitHelper
Expand Down
2 changes: 1 addition & 1 deletion contracts/TimeManagerV8.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: BSD-3-Clause
pragma solidity 0.8.13;
pragma solidity 0.8.25;

import { SECONDS_PER_YEAR } from "./constants.sol";

Expand Down
2 changes: 1 addition & 1 deletion contracts/constants.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: BSD-3-Clause
pragma solidity 0.8.13;
pragma solidity ^0.8.25;

/// @dev Base unit for computations, usually used in scaling (multiplications, divisions)
uint256 constant EXP_SCALE = 1e18;
Expand Down
2 changes: 1 addition & 1 deletion contracts/test/HarnessMaxLoopsLimitHelper.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: BSD-3-Clause
pragma solidity 0.8.13;
pragma solidity 0.8.25;

import { MaxLoopsLimitHelper } from "../MaxLoopsLimitHelper.sol";

Expand Down
2 changes: 1 addition & 1 deletion contracts/validators.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: BSD-3-Clause
pragma solidity 0.8.13;
pragma solidity 0.8.25;

/// @notice Thrown if the supplied address is a zero address where it is not allowed
error ZeroAddressNotAllowed();
Expand Down
2 changes: 1 addition & 1 deletion hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const config: HardhatUserConfig = {
solidity: {
compilers: [
{
version: "0.8.13",
version: "0.8.25",
settings: {
optimizer: {
enabled: true,
Expand Down

0 comments on commit 88b12ce

Please sign in to comment.