Skip to content

Commit

Permalink
allow wider solidity version in libsemver
Browse files Browse the repository at this point in the history
  • Loading branch information
peersky committed Sep 18, 2024
1 parent e66016d commit 9ad168f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libraries/LibSemver.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity =0.8.20;
pragma solidity >=0.8.0 <0.9.0;
import "@openzeppelin/contracts/utils/Strings.sol";
library LibSemver {
error versionMissmatch(string message);
Expand Down

0 comments on commit 9ad168f

Please sign in to comment.