Skip to content

Commit 35990b0

Browse files
release v1.10.0 [skip ci]
1 parent f7ec3ee commit 35990b0

14 files changed

Lines changed: 60 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [1.10.0](https://github.com/ZerryStack/react-formz/compare/v1.9.0...v1.10.0) (2023-09-18)
7+
8+
### Updates
9+
10+
- dependsOn ([8d724b5](https://github.com/ZerryStack/react-formz/commit/8d724b54676ee854ad79fac9f86bfa7540736f58))
11+
- remove test files from prod bundle ([24f907b](https://github.com/ZerryStack/react-formz/commit/24f907b47edcb7a3a74885084d535dcea7a4e8a9))
12+
13+
### Fixes
14+
15+
- fix build ([f7ec3ee](https://github.com/ZerryStack/react-formz/commit/f7ec3eee3c1132e0db05f06c9bcf6718d196742c))
16+
617
## [1.9.0](https://github.com/ZerryStack/react-formz/compare/v0.3.0-beta...v1.9.0) (2023-09-18)
718

819
### Updates

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
33
"useWorkspaces": true,
4-
"version": "1.9.0",
4+
"version": "1.10.0",
55
"npmClient": "yarn",
66
"gitTagVersion": true,
77
"conventionalCommits": true,

packages/react-formz-native/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [1.10.0](https://github.com/ZerryStack/react-formz/compare/v1.9.0...v1.10.0) (2023-09-18)
7+
8+
### Updates
9+
10+
- dependsOn ([8d724b5](https://github.com/ZerryStack/react-formz/commit/8d724b54676ee854ad79fac9f86bfa7540736f58))
11+
612
## [1.9.0](https://github.com/ZerryStack/react-formz/compare/v0.3.0-beta...v1.9.0) (2023-09-18)
713

814
### Updates

packages/react-formz-native/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@zerry/react-formz-native",
3-
"version": "1.9.0",
3+
"version": "1.10.0",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/ZerryStack/react-formz.git"

packages/react-formz-validators-utils/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [1.10.0](https://github.com/ZerryStack/react-formz/compare/v1.9.0...v1.10.0) (2023-09-18)
7+
8+
### Updates
9+
10+
- dependsOn ([8d724b5](https://github.com/ZerryStack/react-formz/commit/8d724b54676ee854ad79fac9f86bfa7540736f58))
11+
612
## [1.9.0](https://github.com/ZerryStack/react-formz/compare/v0.3.0-beta...v1.9.0) (2023-09-18)
713

814
### Updates

packages/react-formz-validators-utils/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@zerry/react-formz-validators-utils",
3-
"version": "1.9.0",
3+
"version": "1.10.0",
44
"license": "MIT",
55
"description": "Shared utilitity functions for zod validators.",
66
"main": "./dist/index.js",

packages/react-formz-validators-yup/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [1.10.0](https://github.com/ZerryStack/react-formz/compare/v1.9.0...v1.10.0) (2023-09-18)
7+
8+
### Updates
9+
10+
- dependsOn ([8d724b5](https://github.com/ZerryStack/react-formz/commit/8d724b54676ee854ad79fac9f86bfa7540736f58))
11+
612
## [1.9.0](https://github.com/ZerryStack/react-formz/compare/v0.3.0-beta...v1.9.0) (2023-09-18)
713

814
### Updates

packages/react-formz-validators-yup/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@zerry/react-formz-validators-yup",
3-
"version": "1.9.0",
3+
"version": "1.10.0",
44
"license": "MIT",
55
"description": "Up validator for @zerry/react-formz to validate form data against a zod schema.",
66
"main": "dist/index.js",

packages/react-formz-validators-zod/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,16 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [1.10.0](https://github.com/ZerryStack/react-formz/compare/v1.9.0...v1.10.0) (2023-09-18)
7+
8+
### Updates
9+
10+
- dependsOn ([8d724b5](https://github.com/ZerryStack/react-formz/commit/8d724b54676ee854ad79fac9f86bfa7540736f58))
11+
12+
### Fixes
13+
14+
- fix build ([f7ec3ee](https://github.com/ZerryStack/react-formz/commit/f7ec3eee3c1132e0db05f06c9bcf6718d196742c))
15+
616
## [1.9.0](https://github.com/ZerryStack/react-formz/compare/v0.3.0-beta...v1.9.0) (2023-09-18)
717

818
### Updates

packages/react-formz-validators-zod/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@zerry/react-formz-validators-zod",
3-
"version": "1.9.0",
3+
"version": "1.10.0",
44
"license": "MIT",
55
"description": "Zod validator for @zerry/react-formz to validate form data against a zod schema.",
66
"main": "dist/index.js",

0 commit comments

Comments
 (0)