diff --git a/Cargo.lock b/Cargo.lock index e1643102..f5022ee4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -283,7 +283,7 @@ checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" [[package]] name = "oxc-schemars" -version = "0.8.26" +version = "0.8.27" dependencies = [ "arrayvec 0.5.2", "arrayvec 0.7.4", diff --git a/Cargo.toml b/Cargo.toml index 55caf8c9..42a10746 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,5 +6,5 @@ members = [ resolver = "2" [workspace.dependencies] -oxc-schemars = { version = "0.8.26", path = "schemars" } +oxc-schemars = { version = "0.8.27", path = "schemars" } oxc_schemars_derive = { version = "0.8.26", path = "schemars_derive" } diff --git a/schemars/CHANGELOG.md b/schemars/CHANGELOG.md new file mode 100644 index 00000000..63380c26 --- /dev/null +++ b/schemars/CHANGELOG.md @@ -0,0 +1,19 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [0.8.27](https://github.com/oxc-project/schemars/compare/oxc-schemars-v0.8.26...oxc-schemars-v0.8.27) - 2025-11-23 + +### Fixed + +- Regenerate the test snapshots. ([#11](https://github.com/oxc-project/schemars/pull/11)) + +### Other + +- Add a JSON Schema implementation for the regex crate ([#9](https://github.com/oxc-project/schemars/pull/9)) +- Update examples/tests so they pass again. ([#8](https://github.com/oxc-project/schemars/pull/8)) diff --git a/schemars/Cargo.toml b/schemars/Cargo.toml index 7a69fb8f..dd86681c 100644 --- a/schemars/Cargo.toml +++ b/schemars/Cargo.toml @@ -2,7 +2,7 @@ name = "oxc-schemars" description = "Generate JSON Schemas from Rust code" repository = "https://github.com/oxc-project/schemars" -version = "0.8.26" +version = "0.8.27" authors = ["Graham Esau "] edition = "2021" license = "MIT"