Skip to content
This repository has been archived by the owner on Dec 1, 2018. It is now read-only.

Release v1.7.1 #87

Merged
merged 3 commits into from
Aug 30, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 1.7.1 (2016-08-30)

- Hotfix for Vagrant v1.8.5 regression with VirtualBox shared folders on Tiny Core


## 1.7.0 (2016-08-26)

- IMPORTANT: this release requires VirtualBox v5.1.x and Vagrant v1.8.5+
Expand All @@ -9,6 +14,7 @@
- docker-compose 1.8.0
- winpty 0.4.0 (Windows only)


## 1.6.2 (2016-06-27)

- Hotfix: Fixed broken winpty dependency since 1.6.0 on Windows
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.7.0
1.7.1
12 changes: 6 additions & 6 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -242,14 +242,14 @@ Vagrant.configure("2") do |config|
end
end

# Fix default vagrant share.
# TODO: test and remove once Vagrant v1.8.6 is out.
config.vm.synced_folder ".", "/vagrant", owner: 1000, group: 50

# Make host home directory available to containers in /.home
# TODO: test and remove hardcoded owner and group below once Vagrant v1.8.6 is out.
if File.directory?(File.expand_path("~"))
config.vm.synced_folder "~", "/.home"
end

# Make host SSH keys available to containers in /.ssh (legacy, TO BE REMOVED soon)
if File.directory?(File.expand_path("~/.ssh"))
config.vm.synced_folder "~/.ssh", "/.ssh"
config.vm.synced_folder "~", "/.home", owner: 1000, group: 50
end

######################################################################
Expand Down