diff --git a/.rubocop.yml b/.rubocop.yml index a838793..734998e 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -4,7 +4,7 @@ require: - rubocop-rspec AllCops: - TargetRubyVersion: 3.3 + TargetRubyVersion: 3.0 NewCops: enable Naming/FileName: diff --git a/CHANGELOG.md b/CHANGELOG.md index 3a3b28f..03d5952 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/Gemfile.lock b/Gemfile.lock index 77adff4..75ee7ad 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -33,7 +33,7 @@ GIT PATH remote: . specs: - vagrant-bindfs (1.3.0) + vagrant-bindfs (1.3.1) GEM remote: https://rubygems.org/ diff --git a/lib/vagrant-bindfs/vagrant/actions/mounter.rb b/lib/vagrant-bindfs/vagrant/actions/mounter.rb index 50a6a43..f5f4740 100644 --- a/lib/vagrant-bindfs/vagrant/actions/mounter.rb +++ b/lib/vagrant-bindfs/vagrant/actions/mounter.rb @@ -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 diff --git a/lib/vagrant-bindfs/version.rb b/lib/vagrant-bindfs/version.rb index ae8b7a9..37f26ac 100644 --- a/lib/vagrant-bindfs/version.rb +++ b/lib/vagrant-bindfs/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module VagrantBindfs - VERSION = '1.3.0' + VERSION = '1.3.1' end