diff --git a/Readme.md b/Readme.md index a2d755c..1f743cf 100644 --- a/Readme.md +++ b/Readme.md @@ -30,7 +30,7 @@ then to use it within your application you can do it just like below: The search function will accept 6 optional input parameter: -- `length` (`Number`): The length of the desired password. If you left it blank it will be a random number between 0 to 20. +- `length` (`Number`, , Default: `1-20`): The length of the desired password. If you left it blank it will be a random number between 1 to 20. - `lowerIncluded` (`Boolean`, Default: `True`): You can include or exclude lowercase characters, by default, it's `True` which means the lowercase characters are included. - `capsIncluded` (`Boolean`, Default: `True`): You can include or exclude capital characters, by default, it's `True` which means the capital characters are included. - `numIncluded` (`Boolean`, Default: `True`): You can include or exclude numbers, by default, it's `True` which means the numbers are included. diff --git a/package.json b/package.json index 6fb751a..5b527b9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@smakss/password-generator", - "version": "1.0.2", + "version": "1.0.3", "description": "Generate random password.", "type": "module", "main": "./index.cjs",