Commit a0ceb8bd authored by Andreas Bigger's avatar Andreas Bigger

patch version bump

parent c9630d7c
This diff is collapsed.
This diff is collapsed.
...@@ -85,7 +85,7 @@ contract EAS is IEAS, Semver, EIP712Verifier { ...@@ -85,7 +85,7 @@ contract EAS is IEAS, Semver, EIP712Verifier {
uint256[MAX_GAP - 3] private __gap; uint256[MAX_GAP - 3] private __gap;
/// @dev Creates a new EAS instance. /// @dev Creates a new EAS instance.
constructor() Semver(1, 0, 0) EIP712Verifier("EAS", "1.0.0") { constructor() Semver(1, 0, 1) EIP712Verifier("EAS", "1.0.1") {
} }
/// @inheritdoc IEAS /// @inheritdoc IEAS
......
...@@ -22,7 +22,7 @@ contract SchemaRegistry is ISchemaRegistry, Semver { ...@@ -22,7 +22,7 @@ contract SchemaRegistry is ISchemaRegistry, Semver {
uint256[MAX_GAP - 1] private __gap; uint256[MAX_GAP - 1] private __gap;
/// @dev Creates a new SchemaRegistry instance. /// @dev Creates a new SchemaRegistry instance.
constructor() Semver(1, 0, 0) {} constructor() Semver(1, 0, 1) {}
/// @inheritdoc ISchemaRegistry /// @inheritdoc ISchemaRegistry
function register(string calldata schema, ISchemaResolver resolver, bool revocable) external returns (bytes32) { function register(string calldata schema, ISchemaResolver resolver, bool revocable) external returns (bytes32) {
......
...@@ -20,7 +20,7 @@ abstract contract SchemaResolver is ISchemaResolver, Semver { ...@@ -20,7 +20,7 @@ abstract contract SchemaResolver is ISchemaResolver, Semver {
/// @dev Creates a new resolver. /// @dev Creates a new resolver.
/// @param eas The address of the global EAS contract. /// @param eas The address of the global EAS contract.
constructor(IEAS eas) Semver(1, 0, 0) { constructor(IEAS eas) Semver(1, 0, 1) {
if (address(eas) == address(0)) { if (address(eas) == address(0)) {
revert InvalidEAS(); revert InvalidEAS();
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment