Skip to content

Commit

Permalink
chore(release): publish
Browse files Browse the repository at this point in the history
  • Loading branch information
logaretm committed Aug 10, 2021
1 parent ee1780c commit d2c64a4
Show file tree
Hide file tree
Showing 10 changed files with 69 additions and 5 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,26 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [4.5.0-alpha.4](https://github.com/logaretm/vee-validate/compare/v4.4.7...v4.5.0-alpha.4) (2021-08-10)


### Bug Fixes

* correctly stage the priority of the initial values ([cc48a5a](https://github.com/logaretm/vee-validate/commit/cc48a5a5a60d7e2e2038043583eef5a03dded48b))
* ensure to clone user passed values in setters closes [#3428](https://github.com/logaretm/vee-validate/issues/3428) ([6470a1f](https://github.com/logaretm/vee-validate/commit/6470a1fa7e5c8f04498d627a3759d445b0587793))
* preserve submission handler return value ([ee1780c](https://github.com/logaretm/vee-validate/commit/ee1780c09a4f58e55d61cfe2d2df751f753334c6))
* prevent initial values from overwritting existing values ([edd7f9b](https://github.com/logaretm/vee-validate/commit/edd7f9bc387d01532be106a52f75ee894007afb4))


### Features

* **perf:** re-write field tracking and batch schema validation closes [#3399](https://github.com/logaretm/vee-validate/issues/3399) ([bda17b8](https://github.com/logaretm/vee-validate/commit/bda17b809bc3e108ce605cb160ee6cd739a41384))
* expose setters in composition API ([1dcf60a](https://github.com/logaretm/vee-validate/commit/1dcf60ad083235e632fdc96be5b79a11fd7452d7))





# [4.5.0-alpha.3](https://github.com/logaretm/vee-validate/compare/v4.4.7...v4.5.0-alpha.3) (2021-07-21)


Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"packages/*"
],
"npmClient": "yarn",
"version": "4.5.0-alpha.3",
"version": "4.5.0-alpha.4",
"useWorkspaces": true,
"command": {
"version": {
Expand Down
8 changes: 8 additions & 0 deletions packages/i18n/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [4.5.0-alpha.4](https://github.com/logaretm/vee-validate/compare/v4.4.7...v4.5.0-alpha.4) (2021-08-10)

**Note:** Version bump only for package @vee-validate/i18n





# [4.5.0-alpha.3](https://github.com/logaretm/vee-validate/compare/v4.4.7...v4.5.0-alpha.3) (2021-07-21)

**Note:** Version bump only for package @vee-validate/i18n
Expand Down
2 changes: 1 addition & 1 deletion packages/i18n/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vee-validate/i18n",
"version": "4.5.0-alpha.3",
"version": "4.5.0-alpha.4",
"description": "Localization module for VeeValidate",
"author": "Abdelrahman Awad <logaretm1@gmail.com>",
"homepage": "https://vee-validate.logaretm.com/v4/guide/i18n",
Expand Down
8 changes: 8 additions & 0 deletions packages/rules/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [4.5.0-alpha.4](https://github.com/logaretm/vee-validate/compare/v4.4.7...v4.5.0-alpha.4) (2021-08-10)

**Note:** Version bump only for package @vee-validate/rules





# [4.5.0-alpha.3](https://github.com/logaretm/vee-validate/compare/v4.4.7...v4.5.0-alpha.3) (2021-07-21)

**Note:** Version bump only for package @vee-validate/rules
Expand Down
2 changes: 1 addition & 1 deletion packages/rules/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vee-validate/rules",
"version": "4.5.0-alpha.3",
"version": "4.5.0-alpha.4",
"description": "Form Validation for Vue.js",
"author": "Abdelrahman Awad <logaretm1@gmail.com>",
"license": "MIT",
Expand Down
20 changes: 20 additions & 0 deletions packages/vee-validate/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,26 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [4.5.0-alpha.4](https://github.com/logaretm/vee-validate/compare/v4.4.7...v4.5.0-alpha.4) (2021-08-10)


### Bug Fixes

* correctly stage the priority of the initial values ([cc48a5a](https://github.com/logaretm/vee-validate/commit/cc48a5a5a60d7e2e2038043583eef5a03dded48b))
* ensure to clone user passed values in setters closes [#3428](https://github.com/logaretm/vee-validate/issues/3428) ([6470a1f](https://github.com/logaretm/vee-validate/commit/6470a1fa7e5c8f04498d627a3759d445b0587793))
* preserve submission handler return value ([ee1780c](https://github.com/logaretm/vee-validate/commit/ee1780c09a4f58e55d61cfe2d2df751f753334c6))
* prevent initial values from overwritting existing values ([edd7f9b](https://github.com/logaretm/vee-validate/commit/edd7f9bc387d01532be106a52f75ee894007afb4))


### Features

* **perf:** re-write field tracking and batch schema validation closes [#3399](https://github.com/logaretm/vee-validate/issues/3399) ([bda17b8](https://github.com/logaretm/vee-validate/commit/bda17b809bc3e108ce605cb160ee6cd739a41384))
* expose setters in composition API ([1dcf60a](https://github.com/logaretm/vee-validate/commit/1dcf60ad083235e632fdc96be5b79a11fd7452d7))





# [4.5.0-alpha.3](https://github.com/logaretm/vee-validate/compare/v4.4.7...v4.5.0-alpha.3) (2021-07-21)


Expand Down
2 changes: 1 addition & 1 deletion packages/vee-validate/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vee-validate",
"version": "4.5.0-alpha.3",
"version": "4.5.0-alpha.4",
"description": "Form Validation for Vue.js",
"author": "Abdelrahman Awad <logaretm1@gmail.com>",
"license": "MIT",
Expand Down
8 changes: 8 additions & 0 deletions packages/zod/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [4.5.0-alpha.4](https://github.com/logaretm/vee-validate/compare/v4.4.7...v4.5.0-alpha.4) (2021-08-10)

**Note:** Version bump only for package @vee-validate/zod





# [4.5.0-alpha.3](https://github.com/logaretm/vee-validate/compare/v4.4.7...v4.5.0-alpha.3) (2021-07-21)

**Note:** Version bump only for package @vee-validate/zod
Expand Down
2 changes: 1 addition & 1 deletion packages/zod/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vee-validate/zod",
"version": "4.5.0-alpha.3",
"version": "4.5.0-alpha.4",
"description": "vee-validate integration with zod schema validation",
"author": "Abdelrahman Awad <logaretm1@gmail.com>",
"license": "MIT",
Expand Down

0 comments on commit d2c64a4

Please sign in to comment.