diff --git a/contracts/package.json b/contracts/package.json index f00edfbef..882acfb3d 100644 --- a/contracts/package.json +++ b/contracts/package.json @@ -1,7 +1,7 @@ { "name": "@thirdweb-dev/contracts", "description": "Collection of smart contracts deployable via the thirdweb SDK, dashboard and CLI", - "version": "3.9.2", + "version": "3.9.3-0", "license": "Apache-2.0", "repository": { "type": "git", diff --git a/scripts/package-release.ts b/scripts/package-release.ts index bf404783b..56137e90d 100644 --- a/scripts/package-release.ts +++ b/scripts/package-release.ts @@ -6,7 +6,7 @@ const artifactsForgeDir = path.join(__dirname, "..", "artifacts_forge"); const contractsDir = path.join(__dirname, "..", "contracts"); const contractArtifactsDir = path.join(__dirname, "..", "contract_artifacts"); -const specialCases: string[] = ["IBaseRouter.sol"]; +const specialCases: string[] = ["IBaseRouter.sol", "MockContractPublisher.sol"]; async function getAllSolidityFiles(dir: string): Promise { const dirents = await fs.readdir(dir, { withFileTypes: true });