From 152d4197ad772e2965b314193971b2f10eb71702 Mon Sep 17 00:00:00 2001 From: Fabio Rehm Date: Sat, 30 Mar 2013 19:49:32 -0300 Subject: [PATCH] v0.2.0 --- CHANGELOG.md | 4 ++++ Gemfile.lock | 2 +- README.md | 9 +++++---- lib/vagrant-lxc/version.rb | 2 +- 4 files changed, 11 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 50c603c..87352ce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## [0.2.0](https://github.com/fgrehm/vagrant-lxc/compare/v0.1.1...v0.2.0) + + - Experimental box packaging (only tested with Ubuntu 64 base box) + ## [0.1.1](https://github.com/fgrehm/vagrant-lxc/compare/v0.1.0...v0.1.1) - Removed support for development under Vagrant < 1.1 diff --git a/Gemfile.lock b/Gemfile.lock index 2148b8a..2afe123 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -14,7 +14,7 @@ GIT PATH remote: . specs: - vagrant-lxc (0.2.0.dev) + vagrant-lxc (0.2.0) GEM remote: https://rubygems.org/ diff --git a/README.md b/README.md index e77f117..bcd9293 100644 --- a/README.md +++ b/README.md @@ -16,9 +16,11 @@ sudo dpkg -i /tmp/vagrant.deb ``` -## What is currently supported? (v0.1.1) +## What is currently supported? (v0.2.0) -* Vagrant's `up`, `halt`, `reload`, `destroy`, and `ssh` commands +Pretty much everything you need from Vagrant: + +* Vagrant's `up`, `halt`, `reload`, `destroy`, `ssh` and `package` commands (box packaging is kind of experimental) * Shared folders * Provisioning * Setting container's host name @@ -32,8 +34,7 @@ for the most up to date list.* * Does not detect forwarded ports collision, right now you are responsible for taking care of that * A hell lot of `sudo`s -* Only a [single ubuntu box supported](boxes), I'm still [figuring out what should go - on the .box file](https://github.com/fgrehm/vagrant-lxc/issues/4) +* Only a [single ubuntu box supported](boxes) * "[works on my machine](https://github.com/fgrehm/vagrant-lxc/issues/20)" (TM) * [Does not tell you if dependencies are not met](https://github.com/fgrehm/vagrant-lxc/issues/11) (will probably just throw up some random error) diff --git a/lib/vagrant-lxc/version.rb b/lib/vagrant-lxc/version.rb index aebf496..62d8d66 100644 --- a/lib/vagrant-lxc/version.rb +++ b/lib/vagrant-lxc/version.rb @@ -1,5 +1,5 @@ module Vagrant module LXC - VERSION = "0.2.0.dev" + VERSION = "0.2.0" end end