diff --git a/CHANGELOG.md b/CHANGELOG.md index 20cbbeb..74e828f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ## [Unreleased] +## Version 1.2.0 (2023-03-07) + ### Breaking changes * Update Fuse integration on Mac OS X to use MacFuse (#101) diff --git a/Gemfile.lock b/Gemfile.lock index 1e3e349..e994199 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -33,7 +33,7 @@ GIT PATH remote: . specs: - vagrant-bindfs (1.1.9) + vagrant-bindfs (1.2.0) GEM remote: https://rubygems.org/ @@ -119,7 +119,7 @@ GEM diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.12.0) rspec-support (3.12.0) - rubocop (1.47.0) + rubocop (1.48.0) json (~> 2.3) parallel (~> 1.10) parser (>= 3.2.0.0) @@ -138,7 +138,7 @@ GEM rubocop-ast (>= 0.4.0) rubocop-rake (0.6.0) rubocop (~> 1.0) - rubocop-rspec (2.18.1) + rubocop-rspec (2.19.0) rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) diff --git a/lib/vagrant-bindfs/vagrant/capabilities/gentoo/bindfs.rb b/lib/vagrant-bindfs/vagrant/capabilities/gentoo/bindfs.rb index 3c5bad4..5d2450c 100644 --- a/lib/vagrant-bindfs/vagrant/capabilities/gentoo/bindfs.rb +++ b/lib/vagrant-bindfs/vagrant/capabilities/gentoo/bindfs.rb @@ -64,7 +64,7 @@ def allow_bindfs_installation(communicator) end def ensure_equery_is_installed(communicator) - return if communicator.test("equery --help") + return if communicator.test('equery --help') # Let the whole system falls back on distribution defaults for supported Python versions. communicator.sudo("sed -i '/^PYTHON_TARGETS=.*$/d' /etc/portage/make.conf") diff --git a/lib/vagrant-bindfs/version.rb b/lib/vagrant-bindfs/version.rb index 0d1de41..b4a6248 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.1.9' + VERSION = '1.2.0' end diff --git a/vagrant-bindfs.gemspec b/vagrant-bindfs.gemspec index af036f1..e533efb 100644 --- a/vagrant-bindfs.gemspec +++ b/vagrant-bindfs.gemspec @@ -39,5 +39,5 @@ Gem::Specification.new do |spec| f.match(excluded_dirs) || excluded_files.include?(f) end - spec.required_ruby_version = '>= 2.7', '< 3.2' + spec.required_ruby_version = '>= 2.7' end