From 6ce08b9d53a490b2d88f4d39a61ce607bec71372 Mon Sep 17 00:00:00 2001 From: David John <david.j@subcom.tech> Date: Mon, 4 Nov 2024 14:24:19 +0530 Subject: [PATCH] chore: bump version and update changelog --- CHANGELOG.md | 58 ++++++++++++++++++++++++++++++++++++++++++++++++++++ Cargo.toml | 2 +- 2 files changed, 59 insertions(+), 1 deletion(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..798593b --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,58 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +## [0.2.0] - 2024-11-04 + +### 🚀 Features + +- Preserve err context from jsonschema + +### âš™ï¸ Miscellaneous Tasks + +- Setup gitlab ci + +## [0.1.3] - 2024-07-01 + +### 🛠Bug Fixes + +- Resolve all references correctly +- Perform additional reference resolution on schema meant to replace a reference + +### 🧪 Testing + +- New integration test for tuple structs + +### âš™ï¸ Miscellaneous Tasks + +- Bump version 0.1.2 -> 0.1.3 + +## [0.1.1] - 2024-02-14 + +### 🛠Bug Fixes + +- Correctly resolve references in enums and arrays + +### âš™ï¸ Miscellaneous Tasks + +- *(release)* Bump version to 0.1.1 + +## [0.1.0] - 2024-02-12 + +### 🚀 Features + +- Improve error reporting + +### 🛠Bug Fixes + +- Implement essential traits on error types + +### 🚜 Refactor + +- Move type name inference to a dedicated function + +### âš™ï¸ Miscellaneous Tasks + +- *(docs)* Update documentation + +<!-- generated by git-cliff --> diff --git a/Cargo.toml b/Cargo.toml index 00d9165..1ed91bc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "schema-police" -version = "0.1.3" +version = "0.2.0" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html -- GitLab