bump to 1.9.0

This commit is contained in:
Francisco Giordano
2018-05-22 14:57:33 -03:00
parent 998b5f43fb
commit b732b6417e
16 changed files with 16 additions and 16 deletions

View File

@ -18,7 +18,7 @@ contract Ownable is Migratable {
* @dev The Ownable constructor sets the original `owner` of the contract to the sender
* account.
*/
function initialize(address _sender) public isInitializer("Ownable", "1.9.0-beta") {
function initialize(address _sender) public isInitializer("Ownable", "1.9.0") {
owner = _sender;
}

View File

@ -30,7 +30,7 @@ contract RBACWithAdmin is RBAC, Migratable {
* @dev constructor. Sets initialAdmin as admin.
*/
function initialize(address initialAdmin)
isInitializer("RBACWithAdmin", "1.9.0-beta")
isInitializer("RBACWithAdmin", "1.9.0")
public
{
addRole(initialAdmin, ROLE_ADMIN);