From 322bc4974e7a87ca01d86767317b7c3e7a2e26d2 Mon Sep 17 00:00:00 2001 From: github-actions Date: Thu, 27 Jun 2024 17:02:54 +0000 Subject: [PATCH 1/2] 3.1.0 --- CHANGELOG.md | 10 +++++++++- package.json | 2 +- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0420eacc..7dd5da0d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [3.1.0] + +### Uncategorized + +- Remove unreleased changelog entry to unblock release ([#27](https://github.com/MetaMask/superstruct/pull/27)) +- Add all types in the `utils` submodule as package-level exports ([#25](https://github.com/MetaMask/superstruct/pull/25)) + ## [3.0.0] ### Added @@ -623,7 +630,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Initial release. -[Unreleased]: https://github.com/MetaMask/superstruct/compare/v3.0.0...HEAD +[Unreleased]: https://github.com/MetaMask/superstruct/compare/v3.1.0...HEAD +[3.1.0]: https://github.com/MetaMask/superstruct/compare/v3.0.0...v3.1.0 [3.0.0]: https://github.com/MetaMask/superstruct/compare/v2.0.0...v3.0.0 [2.0.0]: https://github.com/MetaMask/superstruct/compare/v1.0.0...v2.0.0 [1.0.0]: https://github.com/MetaMask/superstruct/compare/v0.16.0...v1.0.0 diff --git a/package.json b/package.json index 501b9177..1e7efb7b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@metamask/superstruct", - "version": "3.0.0", + "version": "3.1.0", "description": "A simple and composable way to validate data in JavaScript (and TypeScript).", "keywords": [ "api", From 6878fa9d75acf4ac687b92afb67ba674f3bff4d3 Mon Sep 17 00:00:00 2001 From: Jongsun Suh Date: Thu, 27 Jun 2024 13:07:16 -0400 Subject: [PATCH 2/2] Update CHANGELOG --- CHANGELOG.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7dd5da0d..ac947431 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,10 +9,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [3.1.0] -### Uncategorized +### Added -- Remove unreleased changelog entry to unblock release ([#27](https://github.com/MetaMask/superstruct/pull/27)) -- Add all types in the `utils` submodule as package-level exports ([#25](https://github.com/MetaMask/superstruct/pull/25)) +- Newly exports the following types: `Assign`, `If`, `IsUnion`, `ObjectType`, `PartialObjectSchema`, `StructSchema`, `TupleSchema` ([#25](https://github.com/MetaMask/superstruct/pull/25)) ## [3.0.0]