v0.8.0 (aka 1.0.0 release candidate)

This commit is contained in:
Fabio Rehm 2014-07-20 23:02:04 -03:00
parent 1a1b108c23
commit d94f08a048
6 changed files with 23 additions and 8 deletions

View File

@ -1,4 +1,6 @@
## [1.0.0.alpha1](https://github.com/fgrehm/vagrant-cachier/compare/v0.7.2...master) (unreleased)
## [0.8.0](https://github.com/fgrehm/vagrant-cachier/compare/v0.7.2...v0.8.0) (Jul 20, 2014)
**This is considered a release candidate for a 1.0 that will be cut within ~2 weeks if no major issues are reported**
BACKWARDS INCOMPATIBILITIES:
@ -11,12 +13,14 @@ IMPROVEMENTS:
BUG FIXES:
- Automatically disable apt-lists bucket when a Windows host is detected [[GH-106]]
- Skip `chmod 777` for `smb` mounted folders [[GH-107]]
- Do not error if base box has been removed and `:box` is configured as the cache scope [[GH-86]]
[GH-107]: https://github.com/fgrehm/vagrant-cachier/issues/107
[GH-86]: https://github.com/fgrehm/vagrant-cachier/issues/86
[GH-89]: https://github.com/fgrehm/vagrant-cachier/issues/89
[GH-106]: https://github.com/fgrehm/vagrant-cachier/issues/106
[GH-107]: https://github.com/fgrehm/vagrant-cachier/issues/107
## [0.7.2](https://github.com/fgrehm/vagrant-cachier/compare/v0.7.1...v0.7.2) (May 08, 2014)

View File

@ -31,7 +31,7 @@ GIT
PATH
remote: .
specs:
vagrant-cachier (1.0.0.alpha1.dev)
vagrant-cachier (0.8.0)
GEM
remote: https://rubygems.org/

View File

@ -16,3 +16,12 @@ Vagrant.configure("2") do |config|
config.cache.enable :apt_lists
end
```
## Heads up!
This bucket is automatically disabled for Windows hosts, please have a look at
the following issues for more information:
* https://github.com/fgrehm/vagrant-cachier/issues/106
* https://github.com/fgrehm/vagrant-cachier/issues/109
* https://github.com/fgrehm/vagrant-cachier/issues/113

View File

@ -1,7 +1,7 @@
# [Composer](http://getcomposer.org/)
Compatible with probably any type of linux guest distro, will cache guests'
`$HOME/.composer` if PHP is detected.
`$HOME/.composer/cache` if PHP is detected.
To manually enable it:

View File

@ -1,5 +1,5 @@
module VagrantPlugins
module Cachier
VERSION = "1.0.0.alpha1.dev"
VERSION = "0.8.0"
end
end

View File

@ -18,12 +18,14 @@ Gem::Specification.new do |spec|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.post_install_message = %q{
spec.post_install_message = %Q{
Thanks for installing vagrant-cachier #{VagrantPlugins::Cachier::VERSION}!
If you are new to vagrant-cachier just follow along with the docs available
at http://fgrehm.viewdocs.io/vagrant-cachier.
If you are a long time user, please note that plugin has gone through many
backwards incompatible changes since 0.6.0 so checkout
If you are upgrading from a previous version, please note that plugin has gone
through many backwards incompatible changes recently. Please check out
https://github.com/fgrehm/vagrant-cachier/blob/master/CHANGELOG.md
before continuing and caching all the things :)
}