File tree 5 files changed +8
-4
lines changed
5 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 9
9
- ubuntu-latest
10
10
- macos-latest
11
11
ruby :
12
- - " 2.6"
13
12
- " 2.7"
14
13
- " 3.0"
15
14
- " 3.1"
Original file line number Diff line number Diff line change 1
1
## Unreleased
2
2
3
+ ## 1.1.0 (2023-10-15)
4
+ ### Added
5
+ * Support for uniqueItems in array #154
6
+ * Fix nullable field does not work with allOf, anyOf and oneOf keyword #128
7
+
3
8
## 1.0.0 (2021-02-03)
4
9
### Added
5
10
* Add date-time format validation #126
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ require 'rspec/core/rake_task'
4
4
RSpec ::Core ::RakeTask . new ( :spec )
5
5
6
6
task :steep do
7
- sh 'steep check'
7
+ sh 'steep check'
8
8
end
9
9
10
10
task :default => [ :steep , :spec ]
Original file line number Diff line number Diff line change 1
1
module OpenAPIParser
2
- VERSION = '1 .0.0' . freeze
2
+ VERSION = '2 .0.0' . freeze
3
3
end
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
12
12
spec . description = 'parser for OpenAPI 3.0 or later'
13
13
spec . homepage = 'https://github.com/ota42y/openapi_parser'
14
14
spec . license = 'MIT'
15
- spec . required_ruby_version = ">= 2.6 .0"
15
+ spec . required_ruby_version = ">= 2.7 .0"
16
16
17
17
# Specify which files should be added to the gem when it is released.
18
18
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
You can’t perform that action at this time.
0 commit comments