From 4cd239b8f54c01b6210ead3e376d5ec424e4dc9a Mon Sep 17 00:00:00 2001 From: Timur Shemsedinov Date: Wed, 27 Mar 2024 02:45:26 +0200 Subject: [PATCH] Version 2.2.0 --- CHANGELOG.md | 10 +++++++++- LICENSE | 2 +- README.md | 2 +- SECURITY.md | 1 + package-lock.json | 4 ++-- package.json | 2 +- 6 files changed, 15 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3b40d27..c13935d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ ## [Unreleased][unreleased] +## [2.2.0][] - 2024-03-27 + +- Add browser support +- Rename `SchemaError` to `ValidationResult` +- Update dependencies + ## [2.1.5][] - 2023-07-15 - Fix: remove debug output @@ -197,7 +203,9 @@ ## [0.x][] - First generation of metaschema -[unreleased]: https://github.com/metarhia/metaschema/compare/v2.1.4...HEAD +[unreleased]: https://github.com/metarhia/metaschema/compare/v2.2.0...HEAD +[2.2.0]: https://github.com/metarhia/metaschema/compare/v2.1.5...v2.2.0 +[2.1.5]: https://github.com/metarhia/metaschema/compare/v2.1.4...v2.1.5 [2.1.4]: https://github.com/metarhia/metaschema/compare/v2.1.3...v2.1.4 [2.1.3]: https://github.com/metarhia/metaschema/compare/v2.1.2...v2.1.3 [2.1.2]: https://github.com/metarhia/metaschema/compare/v2.1.1...v2.1.2 diff --git a/LICENSE b/LICENSE index 9a85759..ebbf733 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2017-2023 Metarhia contributors +Copyright (c) 2017-2024 Metarhia contributors Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index ae268a0..502f838 100644 --- a/README.md +++ b/README.md @@ -56,6 +56,6 @@ console.log(schema.check(data)); ## License & Contributors -Copyright (c) 2017-2023 [Metarhia contributors](https://github.com/metarhia/metaschema/graphs/contributors). +Copyright (c) 2017-2024 [Metarhia contributors](https://github.com/metarhia/metaschema/graphs/contributors). Metaschema is [MIT licensed](./LICENSE).\ Metaschema is a part of [Metarhia](https://github.com/metarhia) technology stack. diff --git a/SECURITY.md b/SECURITY.md index 6848f42..c53f8da 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -8,6 +8,7 @@ | 1.x | :x: | | 2.0.x | :x: | | 2.1.x | :white_check_mark: | +| 2.2.x | :white_check_mark: | ## Reporting a Vulnerability diff --git a/package-lock.json b/package-lock.json index 3c78cab..2386f87 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "metaschema", - "version": "2.1.5", + "version": "2.2.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "metaschema", - "version": "2.1.5", + "version": "2.2.0", "license": "MIT", "dependencies": { "metautil": "^5.2.1", diff --git a/package.json b/package.json index 6d1a21b..13ceaac 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "metaschema", - "version": "2.1.5", + "version": "2.2.0", "author": "Timur Shemsedinov ", "description": "Metadata Schema and Interface Definition Language (IDL)", "license": "MIT",