Skip to content

Commit 6e1f008

Browse files
committed
chore(publish): release 1.0.0
1 parent 54e8202 commit 6e1f008

3 files changed

Lines changed: 35 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,36 @@
1+
## 1.0.0 (2020-01-11)
2+
3+
### Features
4+
5+
* update to angular 8
6+
* add structural directive for controlled errors management
7+
8+
## Breaking Changes
9+
The 1.0.0 version is compatible with angular 8.
10+
11+
The components have been renamed according to the angular conventions, now they starts with the library prefix.
12+
Update this
13+
```angular2html
14+
<form [formGroup]="heroForm" validationContext="USER.REGISTRATION">
15+
<div formFieldContainer>
16+
<label>Name</label>
17+
<input formControlName="name"/>
18+
</div>
19+
</form>
20+
```
21+
changing the name to ngxValidationErrorsField
22+
23+
```angular2html
24+
<form [formGroup]="heroForm" validationContext="USER.REGISTRATION">
25+
<div ngxValidationErrorsField>
26+
<label>Name</label>
27+
<input formControlName="name"/>
28+
</div>
29+
</form>
30+
```
31+
32+
The old names are still available bu consider it deprecated!
33+
134
## 0.3.0 (2019-11-19)
235

336
## Breaking Changes

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ngx-validation-errors",
3-
"version": "0.3.0",
3+
"version": "1.0.0",
44
"scripts": {
55
"ng": "ng",
66
"start": "ng serve",

projects/xtream/ngx-validation-errors/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@xtream/ngx-validation-errors",
33
"author": "Luca Micieli <luca.micieli@xtreamers.io>",
4-
"version": "0.3.0",
4+
"version": "1.0.0",
55
"repository": {
66
"url": "https://github.com/xtreamsrl/ngx-validation-errors"
77
},

0 commit comments

Comments
 (0)