diff --git a/CHANGELOG.md b/CHANGELOG.md
index 46d1010..ec7ae33 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -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)
 
diff --git a/Gemfile.lock b/Gemfile.lock
index 6c81c1a..b2fbe3b 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -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/
diff --git a/docs/buckets/apt-lists.md b/docs/buckets/apt-lists.md
index 228ca15..1bf4cb0 100644
--- a/docs/buckets/apt-lists.md
+++ b/docs/buckets/apt-lists.md
@@ -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
diff --git a/docs/buckets/composer.md b/docs/buckets/composer.md
index 2aafedb..b7c06fa 100644
--- a/docs/buckets/composer.md
+++ b/docs/buckets/composer.md
@@ -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:
 
diff --git a/lib/vagrant-cachier/version.rb b/lib/vagrant-cachier/version.rb
index b9ba39c..107f315 100644
--- a/lib/vagrant-cachier/version.rb
+++ b/lib/vagrant-cachier/version.rb
@@ -1,5 +1,5 @@
 module VagrantPlugins
   module Cachier
-    VERSION = "1.0.0.alpha1.dev"
+    VERSION = "0.8.0"
   end
 end
diff --git a/vagrant-cachier.gemspec b/vagrant-cachier.gemspec
index 243ce2c..783da47 100644
--- a/vagrant-cachier.gemspec
+++ b/vagrant-cachier.gemspec
@@ -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 :)
   }