diff --git a/README.md b/README.md index fa5775c..3baaa65 100644 --- a/README.md +++ b/README.md @@ -7,18 +7,13 @@ of Linux Containers from Ruby scripts. ## Build and installation -Ruby-LXC is currently under ongoing development following the code in -[lxc's master branch](https://github.com/lxc/lxc/tree/master). Once LXC -officially hits version 1.0.0, we will start providing and maintaing stable -releases. - Assuming a current installation of LXC is available, to install Ruby-LXC simply run the commands below ```sh bundle install bundle exec rake compile -gem install pkg/ruby-lxc-1.0.0.gem +gem install pkg/ruby-lxc-1.0.1.gem ``` or just add this to your ```Gemfile``` ```ruby diff --git a/lib/lxc/version.rb b/lib/lxc/version.rb index 5514da9..0782017 100644 --- a/lib/lxc/version.rb +++ b/lib/lxc/version.rb @@ -1,3 +1,3 @@ module LXC - VERSION = '1.0.0' + VERSION = '1.0.1' end