Skip to content

Commit 7c5ff47

Browse files
authored
Merge pull request ota42y#158 from ota42y/feat/release
drop ruby 2.6
2 parents cbaf7d8 + af8f10a commit 7c5ff47

File tree

5 files changed

+8
-4
lines changed

5 files changed

+8
-4
lines changed

.github/workflows/ci.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ jobs:
99
- ubuntu-latest
1010
- macos-latest
1111
ruby:
12-
- "2.6"
1312
- "2.7"
1413
- "3.0"
1514
- "3.1"

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
## Unreleased
22

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+
38
## 1.0.0 (2021-02-03)
49
### Added
510
* Add date-time format validation #126

Rakefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ require 'rspec/core/rake_task'
44
RSpec::Core::RakeTask.new(:spec)
55

66
task :steep do
7-
sh 'steep check'
7+
sh 'steep check'
88
end
99

1010
task :default => [:steep, :spec]

lib/openapi_parser/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module OpenAPIParser
2-
VERSION = '1.0.0'.freeze
2+
VERSION = '2.0.0'.freeze
33
end

openapi_parser.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
1212
spec.description = 'parser for OpenAPI 3.0 or later'
1313
spec.homepage = 'https://github.com/ota42y/openapi_parser'
1414
spec.license = 'MIT'
15-
spec.required_ruby_version = ">= 2.6.0"
15+
spec.required_ruby_version = ">= 2.7.0"
1616

1717
# Specify which files should be added to the gem when it is released.
1818
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.

0 commit comments

Comments
 (0)