Skip to content

Commit

Permalink
Merge pull request #158 from ota42y/feat/release
Browse files Browse the repository at this point in the history
drop ruby 2.6
  • Loading branch information
ota42y authored Oct 15, 2023
2 parents cbaf7d8 + af8f10a commit 7c5ff47
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
1 change: 0 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ jobs:
- ubuntu-latest
- macos-latest
ruby:
- "2.6"
- "2.7"
- "3.0"
- "3.1"
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -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]
2 changes: 1 addition & 1 deletion lib/openapi_parser/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module OpenAPIParser
VERSION = '1.0.0'.freeze
VERSION = '2.0.0'.freeze
end
2 changes: 1 addition & 1 deletion openapi_parser.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 7c5ff47

Please sign in to comment.