Skip to content

Commit

Permalink
Release 1.2.0 (#102)
Browse files Browse the repository at this point in the history
* Set version number of the next release
* Remove upper version constraint for Ruby
* Update development dependencies
* Bump to version 1.2.0
  • Loading branch information
gael-ian committed Mar 7, 2023
1 parent 2410d41 commit dc3095e
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Expand Up @@ -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)
Expand Down
6 changes: 3 additions & 3 deletions Gemfile.lock
Expand Up @@ -33,7 +33,7 @@ GIT
PATH
remote: .
specs:
vagrant-bindfs (1.1.9)
vagrant-bindfs (1.2.0)

GEM
remote: https://rubygems.org/
Expand Down Expand Up @@ -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)
Expand All @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion lib/vagrant-bindfs/vagrant/capabilities/gentoo/bindfs.rb
Expand Up @@ -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")
Expand Down
2 changes: 1 addition & 1 deletion lib/vagrant-bindfs/version.rb
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module VagrantBindfs
VERSION = '1.1.9'
VERSION = '1.2.0'
end
2 changes: 1 addition & 1 deletion vagrant-bindfs.gemspec
Expand Up @@ -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

0 comments on commit dc3095e

Please sign in to comment.