From 769e0af57ed777413e51e8202b8ccb88635c6f64 Mon Sep 17 00:00:00 2001 From: Fabio Rehm Date: Wed, 27 Mar 2013 02:00:07 -0300 Subject: [PATCH] v0.1.0 --- CHANGELOG.md | 11 +++++++++++ Gemfile.lock | 2 +- README.md | 4 ++-- lib/vagrant-lxc/version.rb | 2 +- 4 files changed, 15 insertions(+), 4 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..019baae --- /dev/null +++ b/CHANGELOG.md @@ -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. diff --git a/Gemfile.lock b/Gemfile.lock index d339dc9..b3ac60e 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -14,7 +14,7 @@ GIT PATH remote: . specs: - vagrant-lxc (0.0.4.dev) + vagrant-lxc (0.1.0) GEM remote: https://rubygems.org/ diff --git a/README.md b/README.md index 4b1ace9..4f0a3f7 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/lib/vagrant-lxc/version.rb b/lib/vagrant-lxc/version.rb index 778d5e0..f68d04c 100644 --- a/lib/vagrant-lxc/version.rb +++ b/lib/vagrant-lxc/version.rb @@ -1,5 +1,5 @@ module Vagrant module LXC - VERSION = "0.0.4.dev" + VERSION = "0.1.0" end end