diff --git a/CHANGELOG.md b/CHANGELOG.md index d312427..8a15436 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,13 @@ 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). -## 0.3.0-rc.1 - 2022-06-03 +## 0.3.0-rc.2 - 2022-06-09 + +### Added + +- Fix bug where we generated spurious `type: ~` entries for certain schema types using `oneOf`. + +## 0.3.0-rc.1 - 2022-06-08 ### Added diff --git a/Cargo.lock b/Cargo.lock index 14f31dd..1950a75 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -248,7 +248,7 @@ checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" [[package]] name = "openapi-interfaces" -version = "0.3.0-rc.1" +version = "0.3.0-rc.2" dependencies = [ "anyhow", "codespan-reporting", diff --git a/Cargo.toml b/Cargo.toml index 4248239..08e0868 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "openapi-interfaces" -version = "0.3.0-rc.1" +version = "0.3.0-rc.2" authors = ["Eric Kidd "] edition = "2018"