Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release knife-cloud 1.0.0 #80

Merged
merged 2 commits into from
Aug 11, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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