Skip to content

Commit 8737567

Browse files
authored
Merge branch 'dev-2.1.0' into remove-blocking-MATM
2 parents cad4562 + f2bd23a commit 8737567

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

contracts/modules/STO/CappedSTOFactory.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ contract CappedSTOFactory is ModuleFactory {
1616
constructor (address _polyAddress, uint256 _setupCost, uint256 _usageCost, uint256 _subscriptionCost) public
1717
ModuleFactory(_polyAddress, _setupCost, _usageCost, _subscriptionCost)
1818
{
19-
version = "1.0.0";
19+
version = "2.1.0";
2020
name = "CappedSTO";
2121
title = "Capped STO";
2222
description = "This smart contract creates a maximum number of tokens (i.e. hard cap) which the total aggregate of tokens acquired by all investors cannot exceed. Security tokens are sent to the investor upon reception of the funds (ETH or POLY), and any security tokens left upon termination of the offering will not be minted.";

contracts/modules/TransferManager/ManualApprovalTransferManagerFactory.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ contract ManualApprovalTransferManagerFactory is ModuleFactory {
1818
constructor (address _polyAddress, uint256 _setupCost, uint256 _usageCost, uint256 _subscriptionCost) public
1919
ModuleFactory(_polyAddress, _setupCost, _usageCost, _subscriptionCost)
2020
{
21-
version = "2.0.1";
21+
version = "2.1.0";
2222
name = "ManualApprovalTransferManager";
2323
title = "Manual Approval Transfer Manager";
2424
description = "Manage transfers using single approvals";

test/b_capped_sto.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -868,7 +868,7 @@ contract("CappedSTO", accounts => {
868868
);
869869
let tags = await I_CappedSTOFactory.getTags.call();
870870
assert.equal(web3.utils.hexToString(tags[0]), "Capped");
871-
assert.equal(await I_CappedSTOFactory.version.call(), "1.0.0");
871+
assert.equal(await I_CappedSTOFactory.version.call(), "2.1.0");
872872
});
873873

874874
it("Should fail to change the title -- bad owner", async () => {

test/j_manual_approval_transfer_manager.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -811,7 +811,7 @@ contract("ManualApprovalTransferManager", accounts => {
811811
"Allows an issuer to set manual approvals for specific pairs of addresses and amounts. Init function takes no parameters.",
812812
"Wrong Module added"
813813
);
814-
assert.equal(await I_ManualApprovalTransferManagerFactory.version.call(), "2.0.1");
814+
assert.equal(await I_ManualApprovalTransferManagerFactory.version.call(), "2.1.0");
815815
});
816816

817817
it("Should get the tags of the factory", async () => {

0 commit comments

Comments
 (0)