This commit is contained in:
Fabio Rehm 2013-03-27 02:00:07 -03:00
parent e61bd73f13
commit 769e0af57e
4 changed files with 15 additions and 4 deletions

11
CHANGELOG.md Normal file
View file

@ -0,0 +1,11 @@
## 0.1.0
- Support for chef added to base quantal64 box
- Puppet upgraded to 3.1.1 on base quantal64 box
- Port forwarding support added [#6](https://github.com/fgrehm/vagrant-lxc/issues/6)
## Previous
The changelog began with version 0.1.0 so any changes prior to that
can be seen by checking the tagged releases and reading git commit
messages.

View file

@ -14,7 +14,7 @@ GIT
PATH
remote: .
specs:
vagrant-lxc (0.0.4.dev)
vagrant-lxc (0.1.0)
GEM
remote: https://rubygems.org/

View file

@ -1,6 +1,6 @@
# vagrant-lxc [![Build Status](https://travis-ci.org/fgrehm/vagrant-lxc.png?branch=master)](https://travis-ci.org/fgrehm/vagrant-lxc) [![Gem Version](https://badge.fury.io/rb/vagrant-lxc.png)](http://badge.fury.io/rb/vagrant-lxc) [![Code Climate](https://codeclimate.com/github/fgrehm/vagrant-lxc.png)](https://codeclimate.com/github/fgrehm/vagrant-lxc)
Highly experimental Linux Containers support for Vagrant 1.1.
Experimental Linux Containers support for Vagrant > 1.1.
## Dependencies
@ -16,7 +16,7 @@ sudo dpkg -i /tmp/vagrant.deb
```
## What is currently supported?
## What is currently supported? (v0.1.0)
* Vagrant's `up`, `halt`, `reload`, `destroy`, and `ssh` commands
* Shared folders

View file

@ -1,5 +1,5 @@
module Vagrant
module LXC
VERSION = "0.0.4.dev"
VERSION = "0.1.0"
end
end