diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index b21adeb..2e5316c 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -9,7 +9,6 @@ jobs: - ubuntu-latest - macos-latest ruby: - - "2.6" - "2.7" - "3.0" - "3.1" 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/Rakefile b/Rakefile index d1c3fe8..983d569 100644 --- a/Rakefile +++ b/Rakefile @@ -4,7 +4,7 @@ require 'rspec/core/rake_task' RSpec::Core::RakeTask.new(:spec) task :steep do -sh 'steep check' + sh 'steep check' end task :default => [:steep, :spec] diff --git a/lib/openapi_parser/version.rb b/lib/openapi_parser/version.rb index e28bea2..5b77487 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 = '2.0.0'.freeze end diff --git a/openapi_parser.gemspec b/openapi_parser.gemspec index 19e739f..09c0f81 100644 --- a/openapi_parser.gemspec +++ b/openapi_parser.gemspec @@ -12,7 +12,7 @@ Gem::Specification.new do |spec| spec.description = 'parser for OpenAPI 3.0 or later' spec.homepage = 'https://github.com/ota42y/openapi_parser' spec.license = 'MIT' - spec.required_ruby_version = ">= 2.6.0" + spec.required_ruby_version = ">= 2.7.0" # Specify which files should be added to the gem when it is released. # The `git ls-files -z` loads the files in the RubyGem that have been added into git.