Skip to content

Commit 815084f

Browse files
committed
v0.16.0
1 parent cd7f1e7 commit 815084f

File tree

17 files changed

+53
-40
lines changed

17 files changed

+53
-40
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
## v0.16.0 (2020/10/22)
2+
3+
### Breaking Changes
4+
5+
- Drop IE 10 support (IE 11 still supported)
6+
- Use Array.flat(Infinity): Node.js >= 12 required
7+
- Use TypeScript 3.7 "asserts condition"
8+
9+
### Features
10+
11+
- Update npm packages
12+
- More ESLint and Stylelint plugins
13+
114
## v0.15.2 (2020/10/20)
215

316
### Fixes

examples/Bootstrap4/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bootstrap4-example",
3-
"version": "0.15.2",
3+
"version": "0.16.0",
44
"private": true,
55
"description": "react-form-with-constraints Bootstrap 4 example",
66
"keywords": [
@@ -28,9 +28,9 @@
2828
"raf": "^3.4.1",
2929
"react": "^16.14.0",
3030
"react-dom": "^16.14.0",
31-
"react-form-with-constraints": "^0.15.2",
32-
"react-form-with-constraints-bootstrap4": "^0.15.2",
33-
"react-form-with-constraints-tools": "^0.15.2"
31+
"react-form-with-constraints": "^0.16.0",
32+
"react-form-with-constraints-bootstrap4": "^0.16.0",
33+
"react-form-with-constraints-tools": "^0.16.0"
3434
},
3535
"devDependencies": {
3636
"@babel/core": "^7.12.3",

examples/ClubMembers/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "club-members-example",
3-
"version": "0.15.2",
3+
"version": "0.16.0",
44
"private": true,
55
"description": "react-form-with-constraints ClubMembers example",
66
"keywords": [
@@ -21,8 +21,8 @@
2121
"mobx-react": "^6.3.1",
2222
"react": "^16.14.0",
2323
"react-dom": "^16.14.0",
24-
"react-form-with-constraints": "^0.15.2",
25-
"react-form-with-constraints-tools": "^0.15.2"
24+
"react-form-with-constraints": "^0.16.0",
25+
"react-form-with-constraints-tools": "^0.16.0"
2626
},
2727
"devDependencies": {
2828
"@babel/core": "^7.12.3",

examples/HTML5ConstraintValidationAPI/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "html5-constraint-validation-api-example",
3-
"version": "0.15.2",
3+
"version": "0.16.0",
44
"private": true,
55
"description": "React with HTML5 constraint validation API example",
66
"keywords": [

examples/MaterialUI/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "material-ui-example",
3-
"version": "0.15.2",
3+
"version": "0.16.0",
44
"private": true,
55
"description": "react-form-with-constraints Material-UI example",
66
"keywords": [
@@ -23,9 +23,9 @@
2323
"lodash": "^4.17.20",
2424
"react": "^16.14.0",
2525
"react-dom": "^16.14.0",
26-
"react-form-with-constraints": "^0.15.2",
27-
"react-form-with-constraints-material-ui": "^0.15.2",
28-
"react-form-with-constraints-tools": "^0.15.2"
26+
"react-form-with-constraints": "^0.16.0",
27+
"react-form-with-constraints-material-ui": "^0.16.0",
28+
"react-form-with-constraints-tools": "^0.16.0"
2929
},
3030
"devDependencies": {
3131
"@babel/core": "^7.12.3",

examples/Password/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "password-example",
3-
"version": "0.15.2",
3+
"version": "0.16.0",
44
"private": true,
55
"description": "react-form-with-constraints Password example",
66
"keywords": [
@@ -20,8 +20,8 @@
2020
"dependencies": {
2121
"react": "^16.14.0",
2222
"react-dom": "^16.14.0",
23-
"react-form-with-constraints": "^0.15.2",
24-
"react-form-with-constraints-tools": "^0.15.2"
23+
"react-form-with-constraints": "^0.16.0",
24+
"react-form-with-constraints-tools": "^0.16.0"
2525
},
2626
"devDependencies": {
2727
"@babel/core": "^7.12.3",

examples/PasswordWithoutState/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "password-without-state-example",
3-
"version": "0.15.2",
3+
"version": "0.16.0",
44
"private": true,
55
"description": "react-form-with-constraints Password without state example",
66
"keywords": [
@@ -19,7 +19,7 @@
1919
"dependencies": {
2020
"react": "^16.14.0",
2121
"react-dom": "^16.14.0",
22-
"react-form-with-constraints": "^0.15.2"
22+
"react-form-with-constraints": "^0.16.0"
2323
},
2424
"devDependencies": {
2525
"@babel/core": "^7.12.3",

examples/PlainOldReact/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "plain-old-react-example",
3-
"version": "0.15.2",
3+
"version": "0.16.0",
44
"private": true,
55
"description": "Plain old React form validation example",
66
"keywords": [

examples/ServerSideRendering/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "server-side-rendering-example",
3-
"version": "0.15.2",
3+
"version": "0.16.0",
44
"private": true,
55
"description": "react-form-with-constraints server-side rendering example",
66
"keywords": [
@@ -21,8 +21,8 @@
2121
"express": "^4.17.1",
2222
"react": "^16.14.0",
2323
"react-dom": "^16.14.0",
24-
"react-form-with-constraints": "^0.15.2",
25-
"react-form-with-constraints-tools": "^0.15.2"
24+
"react-form-with-constraints": "^0.16.0",
25+
"react-form-with-constraints-tools": "^0.16.0"
2626
},
2727
"devDependencies": {
2828
"@babel/core": "^7.12.3",

examples/SignUp/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sign-up-example",
3-
"version": "0.15.2",
3+
"version": "0.16.0",
44
"private": true,
55
"description": "react-form-with-constraints SignUp example",
66
"keywords": [
@@ -23,8 +23,8 @@
2323
"lodash": "^4.17.20",
2424
"react": "^16.14.0",
2525
"react-dom": "^16.14.0",
26-
"react-form-with-constraints": "^0.15.2",
27-
"react-form-with-constraints-tools": "^0.15.2",
26+
"react-form-with-constraints": "^0.16.0",
27+
"react-form-with-constraints-tools": "^0.16.0",
2828
"react-i18next": "^11.7.3"
2929
},
3030
"devDependencies": {

0 commit comments

Comments
 (0)