From 268dd89791c419859d9d5a7aaed5294f4972d3aa Mon Sep 17 00:00:00 2001 From: ota42y Date: Sun, 15 Oct 2023 14:39:55 +0000 Subject: [PATCH] 1.1.0 --- .github/workflows/ci.yaml | 4 +++- CHANGELOG.md | 5 +++++ lib/openapi_parser/version.rb | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index b21adeb..923c868 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -22,4 +22,6 @@ jobs: with: ruby-version: ${{ matrix.ruby }} bundler-cache: true - - run: bundle exec rake + - run: | + gem update --system 3.2.3 + bundle exec rake diff --git a/CHANGELOG.md b/CHANGELOG.md index 6e62e27..bc3a7d5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ ## Unreleased +## 1.1.0 (2023-10-15) +### Added +* Support for uniqueItems in array #154 +* Fix nullable field does not work with allOf, anyOf and oneOf keyword #128 + ## 1.0.0 (2021-02-03) ### Added * Add date-time format validation #126 diff --git a/lib/openapi_parser/version.rb b/lib/openapi_parser/version.rb index e28bea2..203dacf 100644 --- a/lib/openapi_parser/version.rb +++ b/lib/openapi_parser/version.rb @@ -1,3 +1,3 @@ module OpenAPIParser - VERSION = '1.0.0'.freeze + VERSION = '1.1.0'.freeze end