Skip to content

Commit

Permalink
Project updates for 0.8.2 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
fnichol committed Aug 24, 2011
1 parent cd67e7f commit 3c179f8
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
## 0.8.1 (unreleased)
## 0.8.2 (August 24, 2011)

### Bug fixes

* Ensure Ruby/gemset is installed in rvm_shell provider. ([@fnichol][])
* Issue [#35](https://github.com/fnichol/chef-rvm/issues/35): Detect if user has RVM installed in rvm_shell provider. ([@fnichol][])

### Improvments

* Array-ize node['rvm']['user_installs']. ([@fnichol][])


## 0.8.0 (August 22, 2011)
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Include a reference to the cookbook in a **Cheffile** and run
librarian-chef init
cat >> Cheffile <<END_OF_CHEFFILE
cookbook 'rvm',
:git => 'git://github.com/fnichol/chef-rvm.git', :ref => 'v0.8.0'
:git => 'git://github.com/fnichol/chef-rvm.git', :ref => 'v0.8.2'
END_OF_CHEFFILE
librarian-chef install

Expand All @@ -61,7 +61,7 @@ plugin:

gem install knife-github-cookbooks
cd chef-repo
knife cookbook github install fnichol/chef-rvm/v0.8.0
knife cookbook github install fnichol/chef-rvm/v0.8.2

## As a Git Submodule

Expand All @@ -80,7 +80,7 @@ If the cookbook needs to downloaded temporarily just to be uploaded to a Chef
Server or Opscode Hosted Chef, then a tarball installation might fit the bill:

cd chef-repo/cookbooks
curl -Ls https://github.com/fnichol/chef-rvm/tarball/v0.8.0 | tar xfz - && \
curl -Ls https://github.com/fnichol/chef-rvm/tarball/v0.8.2 | tar xfz - && \
mv fnichol-chef-rvm-* rvm

## From the Opscode Community Platform
Expand Down
2 changes: 1 addition & 1 deletion metadata.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
license "Apache 2.0"
description "Manages system-wide and per-user RVMs and manages installed Rubies. Several lightweight resources and providers (LWRP) are also defined.Installs and manages RVM. Includes several LWRPs."
long_description "Please refer to README.md (it's long)."
version "0.8.1"
version "0.8.2"

recipe "rvm", "Installs the RVM gem and initializes Chef to use the Lightweight Resources and Providers (LWRPs). Use this recipe explicitly if you only want access to the LWRPs provided."
recipe "rvm::system_install", "Installs the RVM codebase system-wide (that is, into /usr/local/rvm). This recipe includes *default*. Use this recipe by itself if you want RVM installed system-wide but want to handle installing Rubies, invoking LWRPs, etc.."
Expand Down

0 comments on commit 3c179f8

Please sign in to comment.