Skip to content

Commit

Permalink
Merge pull request #80 from opscode/adamed/release-1-0-0
Browse files Browse the repository at this point in the history
Release knife-cloud 1.0.0
  • Loading branch information
Adam Edwards committed Aug 11, 2014
2 parents 5f24cd8 + 37ee53c commit ddf28f0
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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


Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down
2 changes: 1 addition & 1 deletion lib/knife-cloud/version.rb
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit ddf28f0

Please sign in to comment.