Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
zeroknots committed Feb 13, 2024
1 parent 2b5ba63 commit fa05695
Show file tree
Hide file tree
Showing 25 changed files with 39 additions and 39 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@
"@openzeppelin/contracts": "5.0.1"
},
"devDependencies": {
"ds-test": "github:dapphub/ds-test",
"forge-std": "github:foundry-rs/forge-std",
"ds-test": "github:dapphub/ds-test#e282159d5170298eb2455a6c05280ab5a73a4ef0",
"forge-std": "github:foundry-rs/forge-std#v1.7.6",
"prettier": "^2.8.8",
"solmate": "github:transmissions11/solmate",
"solady": "github:vectorized/solady",
"solmate": "github:transmissions11/solmate#c892309933b25c03d32b1b0d674df7ae292ba925",
"solady": "github:vectorized/solady#9deb9ed36a27261a8745db5b7cd7f4cdc3b1cd4e",
"solhint": "^4.1.1"
},
"files": [
Expand Down
22 changes: 11 additions & 11 deletions pnpm-lock.yaml

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

2 changes: 1 addition & 1 deletion script/DeployRegistry.s.sol.bak
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
pragma solidity ^0.8.24;

import { Script } from "forge-std/Script.sol";
import { RegistryTestTools, RegistryInstance } from "../test/utils/BaseUtils.sol";
Expand Down
2 changes: 1 addition & 1 deletion src/Common.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity ^0.8.19;
pragma solidity ^0.8.24;

import { ResolverUID, SchemaUID, AttestationDataRef, ModuleType } from "./DataTypes.sol";

Expand Down
4 changes: 2 additions & 2 deletions src/DataTypes.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity ^0.8.19;
pragma solidity ^0.8.24;

import { IExternalSchemaValidator } from "./external/IExternalSchemaValidator.sol";
import { IExternalResolver } from "./external/IExternalResolver.sol";
Expand Down Expand Up @@ -59,10 +59,10 @@ struct AttestationRequest {
bytes data; // Custom attestation data.
ModuleType[] moduleTypes; // optional: The type(s) of the module.
}

/**
* @dev A struct representing the arguments of the revocation request.
*/

struct RevocationRequest {
address moduleAddr; // The module address.
}
Expand Down
2 changes: 1 addition & 1 deletion src/IRegistry.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity ^0.8.19;
pragma solidity ^0.8.24;

import {
AttestationDataRef,
Expand Down
2 changes: 1 addition & 1 deletion src/Registry.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity ^0.8.19;
pragma solidity ^0.8.24;

import { SignedAttestation } from "./core/SignedAttestation.sol";
import { IRegistry } from "./IRegistry.sol";
Expand Down
2 changes: 1 addition & 1 deletion src/core/Attestation.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity ^0.8.19;
pragma solidity ^0.8.24;

import {
AttestationRecord, AttestationRequest, RevocationRequest, SchemaUID
Expand Down
2 changes: 1 addition & 1 deletion src/core/AttestationManager.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity ^0.8.19;
pragma solidity ^0.8.24;

import {
AttestationDataRef,
Expand Down
2 changes: 1 addition & 1 deletion src/core/ModuleManager.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity ^0.8.19;
pragma solidity ^0.8.24;

import { ModuleDeploymentLib } from "../lib/ModuleDeploymentLib.sol";
import { StubLib } from "../lib/StubLib.sol";
Expand Down
2 changes: 1 addition & 1 deletion src/core/ResolverManager.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity ^0.8.19;
pragma solidity ^0.8.24;

import { ResolverRecord, ResolverUID } from "../DataTypes.sol";
import { ZERO_ADDRESS } from "../Common.sol";
Expand Down
2 changes: 1 addition & 1 deletion src/core/SchemaManager.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity ^0.8.19;
pragma solidity ^0.8.24;

import { SchemaRecord, SchemaUID } from "../DataTypes.sol";
import { IExternalSchemaValidator } from "../external/IExternalSchemaValidator.sol";
Expand Down
2 changes: 1 addition & 1 deletion src/core/SignedAttestation.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity ^0.8.19;
pragma solidity ^0.8.24;

import { Attestation } from "./Attestation.sol";
import { AttestationRequest, RevocationRequest, SchemaUID } from "../DataTypes.sol";
Expand Down
2 changes: 1 addition & 1 deletion src/core/TrustManager.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity ^0.8.19;
pragma solidity ^0.8.24;

import {
AttestationRecord,
Expand Down
2 changes: 1 addition & 1 deletion src/core/TrustManagerExternalAttesterList.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity ^0.8.19;
pragma solidity ^0.8.24;

import { AttestationRecord } from "../DataTypes.sol";
import { ZERO_TIMESTAMP } from "../Common.sol";
Expand Down
2 changes: 1 addition & 1 deletion src/external/IExternalSchemaValidator.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity ^0.8.19;
pragma solidity ^0.8.24;

import { AttestationRecord } from "../DataTypes.sol";
import { IERC165 } from "forge-std/interfaces/IERC165.sol";
Expand Down
2 changes: 1 addition & 1 deletion src/external/examples/ERC7512Schema.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity ^0.8.19;
pragma solidity ^0.8.24;

import { IExternalSchemaValidator } from "../IExternalSchemaValidator.sol";
import { AttestationRecord, AttestationDataRef } from "../../DataTypes.sol";
Expand Down
2 changes: 1 addition & 1 deletion src/external/examples/ResolverBase.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity ^0.8.19;
pragma solidity ^0.8.24;

import { IExternalResolver } from "../IExternalResolver.sol";
import { IRegistry } from "../../IRegistry.sol";
Expand Down
2 changes: 1 addition & 1 deletion src/external/examples/TokenizedResolver.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
pragma solidity ^0.8.24;

import "./ResolverBase.sol";
import "forge-std/interfaces/IERC20.sol";
Expand Down
2 changes: 1 addition & 1 deletion src/lib/AttestationLib.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity ^0.8.19;
pragma solidity ^0.8.24;

import { AttestationRequest, RevocationRequest, AttestationDataRef } from "../DataTypes.sol";
import { SSTORE2 } from "solady/utils/SSTORE2.sol";
Expand Down
2 changes: 1 addition & 1 deletion src/lib/Helpers.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity ^0.8.19;
pragma solidity ^0.8.24;

import { ResolverRecord, SchemaRecord, SchemaUID, ResolverUID } from "../DataTypes.sol";

Expand Down
2 changes: 1 addition & 1 deletion src/lib/ModuleDeploymentLib.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity ^0.8.19;
pragma solidity ^0.8.24;

/**
* @title ModuleDeploymentLib
Expand Down
2 changes: 1 addition & 1 deletion src/lib/StubLib.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity ^0.8.19;
pragma solidity ^0.8.24;

import { AttestationRecord, ResolverRecord, SchemaRecord, ModuleRecord } from "../DataTypes.sol";
import { IExternalSchemaValidator } from "../external/IExternalSchemaValidator.sol";
Expand Down
2 changes: 1 addition & 1 deletion test/Base.t.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity ^0.8.19;
pragma solidity ^0.8.24;

import "forge-std/Test.sol";
import "src/Registry.sol";
Expand Down
2 changes: 1 addition & 1 deletion test/mocks/MockFactory.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity ^0.8.19;
pragma solidity ^0.8.24;

contract MockFactory {
function deploy(bytes memory bytecode) external returns (address addr) {
Expand Down

0 comments on commit fa05695

Please sign in to comment.