diff --git a/CHANGELOG.md b/CHANGELOG.md index 4281af4..0e85beb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,8 +3,12 @@ ## Unreleased * No changes unreleased -Last Release: v1.0.0.rc.0 (2014-07-25) -------------------- +Last Release: v1.0.0 (2014-08-11) +--------------------------------- +* Make the `Fog` gem a dev dependency + +v1.0.0.rc.0 (2014-07-25) +------------------------ - First public release candidate diff --git a/README.md b/README.md index 084d277..a4f6b02 100644 --- a/README.md +++ b/README.md @@ -103,7 +103,8 @@ Create a new ruby project, say knife-myplugin. Its code structure will look like - myplugin_service.rb Knife-cloud has a wrapper written for the Fog service. It can be used in your plugin as mentioned in the steps below. If ruby Fog does not have support for your cloud provider, you will have to write your own Service class analogous to the Chef::Knife::Cloud::FogService class which is defined in knife-cloud. -Implement your Service class which should inherit from the FogService class. +* Add a dependency on the desired version of the `Fog` gem to your plugin's gemspec. +* Implement your Service class which should inherit from the FogService class. Example Code: diff --git a/lib/knife-cloud/version.rb b/lib/knife-cloud/version.rb index c0e1742..ce267c4 100644 --- a/lib/knife-cloud/version.rb +++ b/lib/knife-cloud/version.rb @@ -1,6 +1,6 @@ module Knife module Cloud - VERSION = "1.0.0.rc.0" + VERSION = "1.0.0" MAJOR, MINOR, TINY = VERSION.split('.') end end