mirror of
https://github.com/samsonjs/wordexp.git
synced 2026-04-04 10:25:50 +00:00
Remove remaining traces of Ruby 2.7 and update changelog
This commit is contained in:
parent
6a61cf762b
commit
8562622eee
6 changed files with 11 additions and 5 deletions
|
|
@ -24,7 +24,7 @@ commands:
|
|||
- run:
|
||||
name: Install Ruby Dependencies
|
||||
command: |
|
||||
gem install bundler -v 2.4.6 --conservative --no-document
|
||||
gem install bundler -v 2.4.20 --conservative --no-document
|
||||
bundle config --local path vendor/bundle
|
||||
bundle check || (bundle install --jobs=4 --retry=3 && bundle clean)
|
||||
- save_cache:
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
AllCops:
|
||||
NewCops: enable
|
||||
TargetRubyVersion: 2.7
|
||||
TargetRubyVersion: 3.0
|
||||
|
||||
Layout/EmptyLineAfterGuardClause:
|
||||
Enabled: false
|
||||
|
|
|
|||
|
|
@ -4,6 +4,11 @@
|
|||
|
||||
[gh]: https://github.com/samsonjs/wordexp/releases
|
||||
|
||||
# 0.2.0
|
||||
# unreleased
|
||||
|
||||
- Drop support for Ruby 2.7 because it's no longer supported
|
||||
|
||||
# 0.1.2
|
||||
# 2023-01-08
|
||||
|
||||
|
|
|
|||
|
|
@ -60,6 +60,7 @@ GEM
|
|||
PLATFORMS
|
||||
arm64-darwin-21
|
||||
arm64-darwin-22
|
||||
arm64-darwin-23
|
||||
x86_64-linux
|
||||
|
||||
DEPENDENCIES
|
||||
|
|
@ -76,4 +77,4 @@ DEPENDENCIES
|
|||
wordexp!
|
||||
|
||||
BUNDLED WITH
|
||||
2.4.6
|
||||
2.4.20
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
module Wordexp
|
||||
VERSION = '0.1.2'.freeze
|
||||
VERSION = '0.2.0'.freeze
|
||||
end
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ Gem::Specification.new do |spec|
|
|||
spec.summary = 'A Ruby gem for performing shell word expansion using wordexp'
|
||||
spec.homepage = 'https://github.com/samsonjs/wordexp'
|
||||
spec.license = 'MIT'
|
||||
spec.required_ruby_version = '>= 2.7.0'
|
||||
spec.required_ruby_version = '>= 3.0.0'
|
||||
|
||||
spec.metadata = {
|
||||
'bug_tracker_uri' => 'https://github.com/samsonjs/wordexp/issues',
|
||||
|
|
|
|||
Loading…
Reference in a new issue