Skip to content

Commit 7c58844

Browse files
committed
chore(release): bump version number to 1.0.1
1 parent ebcf94b commit 7c58844

File tree

4 files changed

+27
-5
lines changed

4 files changed

+27
-5
lines changed

CHANGELOG.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
1+
<a name="1.0.1"></a>
2+
## [1.0.1](https://github.com/anthonynahas/ngx-material-password-strength/compare/v1.0.0...v1.0.1) (2018-04-13)
3+
4+
5+
### Bug Fixes
6+
7+
* **circli:** renamed the start npm script to build ([ea3a243](https://github.com/anthonynahas/ngx-material-password-strength/commit/ea3a243))
8+
* **ngx-material-password-strength:** added the PasswordStrengthComponent to the module ([bddfa15](https://github.com/anthonynahas/ngx-material-password-strength/commit/bddfa15))
9+
10+
11+
### Features
12+
13+
* **project:** added circleci configuration ([2eeb4d0](https://github.com/anthonynahas/ngx-material-password-strength/commit/2eeb4d0))
14+
15+
16+
117
<a name="1.0.0"></a>
2-
# 1.0.0 (2018-04-12)
18+
# [1.0.0](https://github.com/anthonynahas/ngx-material-password-strength/compare/b3ef465...v1.0.0) (2018-04-12)
319

420

521
### Features

demo/src/app/getting-started/getting-started.component.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ <h1>Getting Started</h1>
66

77
<section class="getting-started">
88
<div class="container">
9-
<!-- put your content here-->
10-
Put your content here. Typically instructions about how to install/use your library.
9+
<!-- put your content here-->
10+
Instructions are coming soon
1111
</div>
12-
</section>
12+
</section>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "ngx-material-password-strength",
33
"description": "Material password strength meter to indicate how secure is the provided password",
4-
"version": "1.0.0",
4+
"version": "1.0.1",
55
"homepage": "https://github.com/anthonynahas/ngx-material-password-strength",
66
"author": {
77
"name": "anthonynahas",

src/module/component/password-strength/password-strength.component.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,12 @@ export class PasswordStrengthComponent implements OnInit, OnChanges {
1919
@Input()
2020
externalError: boolean;
2121

22+
containAtLeastEightChars: boolean;
23+
containAtLeastOneLowerCaseLetter: boolean;
24+
containAtLeastOneUpperCaseLetter: boolean;
25+
containAtLeastOneDigit: boolean;
26+
containAtLeastOneSpecialChar: boolean;
27+
2228
private _strength: number;
2329

2430
private _color: string;

0 commit comments

Comments
 (0)