Skip to content

Commit

Permalink
Rollback targeted Ruby version to Ruby 3.0 (#111, Fix #110)
Browse files Browse the repository at this point in the history
  • Loading branch information
gael-ian authored Aug 24, 2024
1 parent 9d89127 commit d48eda7
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ require:
- rubocop-rspec

AllCops:
TargetRubyVersion: 3.3
TargetRubyVersion: 3.0
NewCops: enable

Naming/FileName:
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## [Unreleased]

## Version 1.3.1 (2024-08-24)

## Fixed

* Rollback uses of Ruby 3.1+ syntaxic sugar for compatibility with Ruby 3.0 (#111)

## Version 1.3.0 (2024-08-23)

### Breaking changes
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ GIT
PATH
remote: .
specs:
vagrant-bindfs (1.3.0)
vagrant-bindfs (1.3.1)

GEM
remote: https://rubygems.org/
Expand Down
2 changes: 1 addition & 1 deletion lib/vagrant-bindfs/vagrant/actions/mounter.rb
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def call(env)
protected

def bind_folders!
info I18n.t('vagrant-bindfs.actions.mounter.start', hook:)
info I18n.t('vagrant-bindfs.actions.mounter.start', hook: hook)
bound_folders(hook).each_value do |folder|
bind_folder!(folder)
end
Expand Down
2 changes: 1 addition & 1 deletion lib/vagrant-bindfs/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module VagrantBindfs
VERSION = '1.3.0'
VERSION = '1.3.1'
end

0 comments on commit d48eda7

Please sign in to comment.