From 9b49ba91911e5a69b31efdbfddda731cb354a398 Mon Sep 17 00:00:00 2001 From: comeonbuddy Date: Thu, 29 Nov 2018 12:48:12 +0100 Subject: [PATCH 1/3] adding change log for module labeling --- CHANGELOG.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4c5796e34..f9a67e096 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -31,7 +31,9 @@ All notable changes to this project will be documented in this file. * Add `getReputationOfFactory()` & `getModuleListOfType()` functions to get the array type data from the ModuleRegistry contract. * Add `_setupCost` in `LogGenerateModuleFromFactory` event. * Add new function `getAllModulesByName()`, To get the list of modules having the same name. #198. -* Add new function `modifyTickerDetails()`, To modify the details of undeployed ticker. #230 +* Add new function `modifyTickerDetails()`, To modify the details of undeployed ticker. #230 +* Add new `_label` param in ST when a module is added so user can customize the label of the module. #428 + ## Fixed * `getAllModulesAndPermsFromTypes()` does not take securityToken address as a parameter anymore. From 62b3573238636027158adad539c14793f24a7808 Mon Sep 17 00:00:00 2001 From: comeonbuddy Date: Thu, 29 Nov 2018 14:06:24 +0100 Subject: [PATCH 2/3] fixed change log adding more info --- CHANGELOG.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f9a67e096..7ba2bfe0f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,17 @@ # Changelog All notable changes to this project will be documented in this file. +# v3.0.0 + +## Added +* Added new function `addModuleWithLabel` which includes a new `_label` param so user can customize the label of the module. #428 + + +## Fixed +* Fixed `addModule` function to be backwards compatible and call the new `addModuleWithLabel` function with an empty label +* Fixed event `ModuleAdded` to also emit `_label` +* Fixed function `getModule` to also return the module label + # v1.5.0 - Release Candidate [__1.5.0__](https://www.npmjs.com/package/polymath-core?activeTab=readme) __15-08-18__ @@ -32,7 +43,7 @@ All notable changes to this project will be documented in this file. * Add `_setupCost` in `LogGenerateModuleFromFactory` event. * Add new function `getAllModulesByName()`, To get the list of modules having the same name. #198. * Add new function `modifyTickerDetails()`, To modify the details of undeployed ticker. #230 -* Add new `_label` param in ST when a module is added so user can customize the label of the module. #428 + ## Fixed From 781cf9cda07a2ded3a5e6bea4477ad17d89fb19d Mon Sep 17 00:00:00 2001 From: satyam Date: Thu, 29 Nov 2018 18:52:19 +0530 Subject: [PATCH 3/3] changelog fixes --- CHANGELOG.md | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7ba2bfe0f..47f95b85b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,16 +1,15 @@ # Changelog All notable changes to this project will be documented in this file. -# v3.0.0 +# v3.0.0 - Release Candidate -## Added -* Added new function `addModuleWithLabel` which includes a new `_label` param so user can customize the label of the module. #428 +[__3.0.0__](https://www.npmjs.com/package/polymath-core?activeTab=readme) __10-11-18__ - -## Fixed -* Fixed `addModule` function to be backwards compatible and call the new `addModuleWithLabel` function with an empty label -* Fixed event `ModuleAdded` to also emit `_label` -* Fixed function `getModule` to also return the module label +## SecurityToken +* Added new function `addModuleWithLabel()` which takes an extra param `_label` that used for giving the customize label to the module for display purpose. #428 +* Fixed `addModule` function to be backwards compatible and call the new `addModuleWithLabel` function with an empty label. +* Fixed event `ModuleAdded` to also emit `_label`. +* Fixed function `getModule` to also return the respective module label. # v1.5.0 - Release Candidate