Skip to content

Commit

Permalink
Merge pull request #25 from tboerger/feature/fixes
Browse files Browse the repository at this point in the history
Fixups for current release
  • Loading branch information
MaximilianMeister committed Nov 11, 2015
2 parents 635d586 + 1b64907 commit c09cef1
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 6 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## [1.0.1](https://github.com/crowbar/crowbar-client/releases/tag/v1.0.1) - 2015-11-11

* Fixed typos for renaming of HostIP
* Fixed typos for renaming of VirtualIP
* Downgraded terminal-table dependency

## [1.0.0](https://github.com/crowbar/crowbar-client/releases/tag/v1.0.0) - 2015-11-11

Expand Down
2 changes: 1 addition & 1 deletion crowbar-client.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ Gem::Specification.new do |s|

s.add_runtime_dependency "httparty", ">= 0.13.3"
s.add_runtime_dependency "inifile", ">= 3.0.0"
s.add_runtime_dependency "terminal-table", ">= 1.5.2"
s.add_runtime_dependency "terminal-table", ">= 1.4.5"
s.add_runtime_dependency "easy_diff", ">= 0.0.5"
s.add_runtime_dependency "hashie", ">= 3.4.1"
end
4 changes: 2 additions & 2 deletions lib/crowbar/client/app.rb
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ module App
autoload :Entry,
File.expand_path("../app/entry", __FILE__)

autoload :HostIp,
autoload :HostIP,
File.expand_path("../app/host_ip", __FILE__)

autoload :Interface,
Expand All @@ -53,7 +53,7 @@ module App
autoload :Role,
File.expand_path("../app/role", __FILE__)

autoload :VirtualIp,
autoload :VirtualIP,
File.expand_path("../app/virtual_ip", __FILE__)
end
end
Expand Down
4 changes: 2 additions & 2 deletions lib/crowbar/client/app/host_ip.rb
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class HostIP < Base
LONGDESC

def allocate(proposal, node, network, range, suggestion = nil)
Command::VirtualIp::Allocate.new(
Command::HostIP::Allocate.new(
*command_params(
proposal: proposal,
node: node,
Expand All @@ -49,7 +49,7 @@ def allocate(proposal, node, network, range, suggestion = nil)
LONGDESC

def deallocate(proposal, node, network)
Command::VirtualIp::Allocate.new(
Command::HostIP::Allocate.new(
*command_params(
proposal: proposal,
node: node,
Expand Down
2 changes: 1 addition & 1 deletion lib/crowbar/client/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ module Client
class Version
MAJOR = 1
MINOR = 0
PATCH = 0
PATCH = 1

PRE = nil

Expand Down

0 comments on commit c09cef1

Please sign in to comment.