diff --git a/CHANGELOG.md b/CHANGELOG.md index 1b62b87..ae52f6c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,18 @@ +## [0.5.3](https://github.com/fgrehm/vagrant-notify/compare/v0.5.2...v0.5.3) (November 18, 2016) +IMPROVEMENTS + + - Command line operations work on multi-VM configurations. + - Notification when provisioning fails. [[GH-23]](https://github.com/fgrehm/vagrant-notify/issues/23) + - Do not start notification server if the guest is not running or has not been created. + - New Windows 10 notify-send notification center PowerShell script. + +BUG FIXES + + - Correctly identify guest shared folder capability. [[GH-31]](https://github.com/fgrehm/vagrant-notify/issues/31) + - Properly manually restart notification server. + - Don't send notify-send notices to host when doing a provision if plugin is disabled. + + ## [0.5.2](https://github.com/fgrehm/vagrant-notify/compare/v0.5.1...v0.5.2) (October 7, 2016) IMPROVEMENTS diff --git a/Gemfile.lock b/Gemfile.lock index 91db789..530bbd8 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -13,7 +13,7 @@ GIT PATH remote: . specs: - vagrant-notify (0.5.2) + vagrant-notify (0.5.3) GEM remote: https://rubygems.org/ diff --git a/lib/vagrant-notify/version.rb b/lib/vagrant-notify/version.rb index 8a5cea4..fb38b64 100644 --- a/lib/vagrant-notify/version.rb +++ b/lib/vagrant-notify/version.rb @@ -1,5 +1,5 @@ module Vagrant module Notify - VERSION = "0.5.2" + VERSION = "0.5.3" end end