From b648a3ff777630f00f55e3e349bb9dee332cc840 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 02:46:01 +0000 Subject: [PATCH] chore(master): release 1.0.0 --- CHANGELOG.md | 18 ++++++++++++++++++ package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 21 insertions(+), 3 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..b60a5f8 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,18 @@ +# Changelog + +## 1.0.0 (2023-08-18) + + +### Features + +* export `generateSchema` ([1f896d7](https://github.com/braze-community/json-schema-it/commit/1f896d7aa2d95df20309ebe19a4ba79cfedec2af)) +* **generate-schema:** add array type ([067213e](https://github.com/braze-community/json-schema-it/commit/067213e13f25cdda89f317171e2788afcb021810)) +* **generate-schema:** add integer type ([dc5b1f6](https://github.com/braze-community/json-schema-it/commit/dc5b1f601fe70e762eee380daf0f7e70a89394df)) +* **generate-schema:** add null type ([07db9d8](https://github.com/braze-community/json-schema-it/commit/07db9d86123358baa278ebaa23239f8252de8b15)) +* **generate-schema:** add number type ([6d2c033](https://github.com/braze-community/json-schema-it/commit/6d2c033306e3b07a8bcc15d7daaef7f5aef1c6b4)) +* **generate-schema:** add object type ([c17166f](https://github.com/braze-community/json-schema-it/commit/c17166f4b841414df7a4c4c3a9db4f84dd507a67)) +* **generate-schema:** handle array with mixed types ([40518ce](https://github.com/braze-community/json-schema-it/commit/40518cec0fffeabe4c1c77d13fc9b88ddc78b760)) +* **generate-schema:** improve array type ([b64bd72](https://github.com/braze-community/json-schema-it/commit/b64bd7228466f938415d40f435d5e94ca6138559)) +* **generate-schema:** improve object type ([b76bd20](https://github.com/braze-community/json-schema-it/commit/b76bd20b3c0f70fadd53ef874795b9fbde277f32)) +* **generate-schema:** throw error for invalid JSON values ([8196d46](https://github.com/braze-community/json-schema-it/commit/8196d46da10badfd6eb8ba24c11671afbe8d6cc1)) +* **generate-schema:** throw error if undefined ([e31a04d](https://github.com/braze-community/json-schema-it/commit/e31a04d1850d30decd97ebb61ac0459e59995276)) diff --git a/package-lock.json b/package-lock.json index a96e572..6400acb 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "json-schema-it", - "version": "1.0.0-alpha", + "version": "1.0.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "json-schema-it", - "version": "1.0.0-alpha", + "version": "1.0.0", "hasInstallScript": true, "license": "MIT", "devDependencies": { diff --git a/package.json b/package.json index 783af37..916ddca 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "json-schema-it", - "version": "1.0.0-alpha", + "version": "1.0.0", "description": "JSON Schema generator.", "author": "Mark ", "main": "cjs/index.js",