diff --git a/.travis.yml b/.travis.yml index d3ceb36..e781050 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,8 +1,7 @@ language: ruby rvm: - - "2.1.2" + - "2.2.1" + - "2.1.3" - "2.1.1" - "2.0.0" - - "1.9.3" - - "1.9.2" - jruby-19mode diff --git a/CHANGELOG.textile b/CHANGELOG.textile index b33cc14..4ae1623 100644 --- a/CHANGELOG.textile +++ b/CHANGELOG.textile @@ -1,3 +1,6 @@ +*3.1.0* +* Many SoftLayer Attributes are now shadowed with snake_case names. The old CamelCase versions are deprecated and will be removed in the next major release +* New functionality related to network monitoring has been added *3.0* * Substantially rewrote the ObjectFilter class. ObjectFilters used to be hashes which made it easy to manipulate their content incorrectly. The new implementation has a strict interface that makes it harder to manipulate filters incorrectly. * Added a model for Virtual Server Image Templates (SoftLayer::ImageTemplate) - VirtualServerOrder now requires an instance of this class rather than allowing you to provide the global_id of an image diff --git a/lib/softlayer/base.rb b/lib/softlayer/base.rb index 1d13261..8ac76e0 100644 --- a/lib/softlayer/base.rb +++ b/lib/softlayer/base.rb @@ -12,7 +12,7 @@ module SoftLayer # The version number (including major, minor, and bugfix numbers) # This should change in accordance with the concept of Semantic Versioning - VERSION = "3.0.2" # version history in the CHANGELOG.textile file at the root of the source + VERSION = "3.1.0" # version history in the CHANGELOG.textile file at the root of the source # The base URL of the SoftLayer API available to the public internet. API_PUBLIC_ENDPOINT = 'https://api.softlayer.com/xmlrpc/v3/'