From 45814ef01417cc8c4804c66ab68af04dbb0c582a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wei=C3=9Fer=20Hase?= Date: Fri, 12 Jul 2024 15:53:26 +0200 Subject: [PATCH 1/2] chore: preparing package for release --- package.json | 14 +++++++------- src/interfaces/ISettlement.sol | 2 +- test/unit/BFactory.t.sol | 2 +- test/unit/BMath.t.sol | 2 +- test/unit/BNum.t.sol | 2 +- test/unit/BToken.t.sol | 2 +- 6 files changed, 12 insertions(+), 12 deletions(-) diff --git a/package.json b/package.json index 836757e0..95282811 100644 --- a/package.json +++ b/package.json @@ -1,17 +1,17 @@ { - "name": "balancer-core", - "version": "0.0.7", + "name": "balancer-cow-amm", + "version": "1.0.0", "private": true, - "description": "Balancer Core Contracts and ABI", - "homepage": "https://github.com/balancer-labs/balancer-core#readme", + "description": "Balancer CoW AMM", + "homepage": "https://github.com/balancer-labs/cow-amm#readme", "bugs": { - "url": "https://github.com/balancer-labs/balancer-core/issues" + "url": "https://github.com/balancer-labs/cow-amm/issues" }, "repository": { "type": "git", - "url": "git+https://github.com/balancer-labs/balancer-core.git" + "url": "git+https://github.com/balancer-labs/cow-amm.git" }, - "license": "GPL-3.0-only", + "license": "GPL-3.0-or-later", "scripts": { "build": "forge build", "build:optimized": "FOUNDRY_PROFILE=optimized forge build", diff --git a/src/interfaces/ISettlement.sol b/src/interfaces/ISettlement.sol index 1b176cc1..1bcb793a 100644 --- a/src/interfaces/ISettlement.sol +++ b/src/interfaces/ISettlement.sol @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: GPL-3.0 +// SPDX-License-Identifier: GPL-3.0-or-later pragma solidity 0.8.25; import {IERC20} from '@cowprotocol/interfaces/IERC20.sol'; diff --git a/test/unit/BFactory.t.sol b/test/unit/BFactory.t.sol index 24e0ed78..698f8823 100644 --- a/test/unit/BFactory.t.sol +++ b/test/unit/BFactory.t.sol @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: UNLICENSED +// SPDX-License-Identifier: MIT pragma solidity 0.8.25; import {IERC20} from '@openzeppelin/contracts/token/ERC20/ERC20.sol'; diff --git a/test/unit/BMath.t.sol b/test/unit/BMath.t.sol index 25158305..be83b216 100644 --- a/test/unit/BMath.t.sol +++ b/test/unit/BMath.t.sol @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: UNLICENSED +// SPDX-License-Identifier: MIT pragma solidity 0.8.25; import {BConst} from 'contracts/BConst.sol'; diff --git a/test/unit/BNum.t.sol b/test/unit/BNum.t.sol index 58041f73..81b6f375 100644 --- a/test/unit/BNum.t.sol +++ b/test/unit/BNum.t.sol @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: UNLICENSED +// SPDX-License-Identifier: MIT pragma solidity 0.8.25; import {BConst} from 'contracts/BConst.sol'; diff --git a/test/unit/BToken.t.sol b/test/unit/BToken.t.sol index ac16f760..237e4033 100644 --- a/test/unit/BToken.t.sol +++ b/test/unit/BToken.t.sol @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: GPL-3 +// SPDX-License-Identifier: MIT pragma solidity ^0.8.25; import {IERC20Errors} from '@openzeppelin/contracts/interfaces/draft-IERC6093.sol'; From cf5c742dcf1e4cb82c2966c352479e27cf075a5d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wei=C3=9Fer=20Hase?= Date: Wed, 24 Jul 2024 20:17:00 +0200 Subject: [PATCH 2/2] fix: broken links --- package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 6196cf28..3501dc8d 100644 --- a/package.json +++ b/package.json @@ -3,13 +3,13 @@ "version": "1.0.0", "private": true, "description": "Balancer CoW AMM", - "homepage": "https://github.com/balancer-labs/cow-amm#readme", + "homepage": "https://github.com/balancer/cow-amm#readme", "bugs": { - "url": "https://github.com/balancer-labs/cow-amm/issues" + "url": "https://github.com/balancer/cow-amm/issues" }, "repository": { "type": "git", - "url": "git+https://github.com/balancer-labs/cow-amm.git" + "url": "git+https://github.com/balancer/cow-amm.git" }, "license": "GPL-3.0-or-later", "scripts": {