v0.8.0 (aka 1.0.0 release candidate)
This commit is contained in:
parent
1a1b108c23
commit
d94f08a048
6 changed files with 23 additions and 8 deletions
|
@ -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:
|
BACKWARDS INCOMPATIBILITIES:
|
||||||
|
|
||||||
|
@ -11,12 +13,14 @@ IMPROVEMENTS:
|
||||||
|
|
||||||
BUG FIXES:
|
BUG FIXES:
|
||||||
|
|
||||||
|
- Automatically disable apt-lists bucket when a Windows host is detected [[GH-106]]
|
||||||
- Skip `chmod 777` for `smb` mounted folders [[GH-107]]
|
- 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]]
|
- 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-86]: https://github.com/fgrehm/vagrant-cachier/issues/86
|
||||||
[GH-89]: https://github.com/fgrehm/vagrant-cachier/issues/89
|
[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)
|
## [0.7.2](https://github.com/fgrehm/vagrant-cachier/compare/v0.7.1...v0.7.2) (May 08, 2014)
|
||||||
|
|
||||||
|
|
|
@ -31,7 +31,7 @@ GIT
|
||||||
PATH
|
PATH
|
||||||
remote: .
|
remote: .
|
||||||
specs:
|
specs:
|
||||||
vagrant-cachier (1.0.0.alpha1.dev)
|
vagrant-cachier (0.8.0)
|
||||||
|
|
||||||
GEM
|
GEM
|
||||||
remote: https://rubygems.org/
|
remote: https://rubygems.org/
|
||||||
|
|
|
@ -16,3 +16,12 @@ Vagrant.configure("2") do |config|
|
||||||
config.cache.enable :apt_lists
|
config.cache.enable :apt_lists
|
||||||
end
|
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
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# [Composer](http://getcomposer.org/)
|
# [Composer](http://getcomposer.org/)
|
||||||
|
|
||||||
Compatible with probably any type of linux guest distro, will cache guests'
|
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:
|
To manually enable it:
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
module VagrantPlugins
|
module VagrantPlugins
|
||||||
module Cachier
|
module Cachier
|
||||||
VERSION = "1.0.0.alpha1.dev"
|
VERSION = "0.8.0"
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -18,12 +18,14 @@ Gem::Specification.new do |spec|
|
||||||
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
||||||
spec.require_paths = ["lib"]
|
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
|
If you are new to vagrant-cachier just follow along with the docs available
|
||||||
at http://fgrehm.viewdocs.io/vagrant-cachier.
|
at http://fgrehm.viewdocs.io/vagrant-cachier.
|
||||||
|
|
||||||
If you are a long time user, please note that plugin has gone through many
|
If you are upgrading from a previous version, please note that plugin has gone
|
||||||
backwards incompatible changes since 0.6.0 so checkout
|
through many backwards incompatible changes recently. Please check out
|
||||||
https://github.com/fgrehm/vagrant-cachier/blob/master/CHANGELOG.md
|
https://github.com/fgrehm/vagrant-cachier/blob/master/CHANGELOG.md
|
||||||
before continuing and caching all the things :)
|
before continuing and caching all the things :)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue