From cdbf8b714a90e4a6919efff10d7633e413bca758 Mon Sep 17 00:00:00 2001 From: evilebottnawi Date: Mon, 5 Oct 2020 21:20:38 +0300 Subject: [PATCH] chore(release): 3.0.0 --- .prettierrc.js | 6 +----- CHANGELOG.md | 9 +++++++++ package-lock.json | 2 +- package.json | 2 +- 4 files changed, 12 insertions(+), 7 deletions(-) diff --git a/.prettierrc.js b/.prettierrc.js index 1934550..4f14003 100644 --- a/.prettierrc.js +++ b/.prettierrc.js @@ -1,5 +1 @@ -module.exports = { - singleQuote: true, - trailingComma: 'es5', - arrowParens: 'always', -}; +module.exports = { singleQuote: true }; diff --git a/CHANGELOG.md b/CHANGELOG.md index d075166..b4fe5be 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,15 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +## [3.0.0](https://github.com/webpack/schema-utils/compare/v2.7.1...v3.0.0) (2020-10-05) + + +### ⚠ BREAKING CHANGES + +* minimum supported `Node.js` version is `10.13.0`, +* the packages exports was changed, please use `const { validate } = require('schema-utils');` +* the `ValidateError` export was removed in favor the `ValidationError` export, please use `const { ValidationError } = require('schema-utils');` + ### [2.7.1](https://github.com/webpack/schema-utils/compare/v2.7.0...v2.7.1) (2020-08-31) diff --git a/package-lock.json b/package-lock.json index 2bf02e4..33ffd7a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "schema-utils", - "version": "2.7.1", + "version": "3.0.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 80001d9..7098118 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "schema-utils", - "version": "2.7.1", + "version": "3.0.0", "description": "webpack Validation Utils", "license": "MIT", "repository": "webpack/schema-utils",