Skip to content

Commit

Permalink
Release 1.39.0
Browse files Browse the repository at this point in the history
  • Loading branch information
geemus committed Mar 13, 2017
1 parent d6c89ea commit cca1da3
Show file tree
Hide file tree
Showing 4 changed files with 73 additions and 7 deletions.
66 changes: 66 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,69 @@
## 1.39.0 03/13/2017
*Hash* d6c89ea01e747f36e3d384191ac3072e29ddec64

Statistic | Value
------------- | --------:
Collaborators | 2
Forks | 1556
Open Issues | 48
Watchers | 3975

**MVP!** Cherdancev Evgeni

#### [CloudSigma]
* add snapshots (#3491). thanks zephyrean

#### [digitalocean]
* delete leftover spec. thanks geemus

#### [misc]
* Adding postinstall message. thanks Artem Yakimenko
* Fixing gemspec conflicts with 1.9. thanks Artem Yakimenko
* Add instance_types support to oVirt provider. thanks Baptiste Agasse
* Fix filtering for Digital Ocean list_ssh_keys request. thanks Ben Sedat
* Allow filtering for Digital Ocean list_flavors request. thanks Ben Sedat
* Fix Digital Ocean list_servers mock format. thanks Ben Sedat
* Add tests for Digital Ocean list_ssh_keys request. thanks Ben Sedat
* Digital Ocean list_* requests pass query params to Excon. thanks Ben Sedat
* add suspend&resume support and change tests to fog way. thanks Cherdancev Evgeni
* remove execute flag from README.md. thanks Cherdancev Evgeni
* retab & remove empty Mock. thanks Cherdancev Evgeni
* change tests for using fogtest flavor. thanks Cherdancev Evgeni
* add suspend&resume support and change tests to fog way. thanks Cherdancev Evgeni
* remove execute flag from README.md. thanks Cherdancev Evgeni
* retab & remove empty Mock. thanks Cherdancev Evgeni
* change tests for using fogtest flavor. thanks Cherdancev Evgeni
* Prevent malformed request with asterisk (*) character. thanks Gavin Lam
* Add DigitalOcean provider. thanks Garcia
* Removed 'filters' from ssh_key. thanks JJ Asghar
* extract DNSimple, require 'fog-dnsimple'. thanks Joshua Lane
* remove dnsimple tests. thanks Joshua Lane
* remove ninefold. thanks Joshua Lane
* Fix default API version for Joyent. thanks Manuel Franco
* fix dependency issues when building on 1.9.*. thanks Paulo Ribeiro
* Add request to create snapshot. thanks Pierre Tinguely
* #3900 Escape VM name in OpenNebula allocator. thanks Sergey Susikov
* Remove digitalocean. thanks Suraj Shirvankar
* Remove digitalocean bin files. thanks Suraj Shirvankar
* Total number of droplets for digital ocean. thanks Tameem
* Add more changes. thanks Tameem
* Testing. thanks Tameem
* Working. thanks Tameem
* clean. thanks Tameem
* F rage4 bulk update endpoint (#3917). thanks Tameem Iftikhar
* Drop 'hp' from compute tests. thanks t Ondruch
* Drop 'hp' from storage tests. thanks t Ondruch
* Drop 'hp' test cases. thanks t Ondruch
* bump fog-core dep. thanks geemus
* bump fog-core dependency. thanks geemus
* fix fog-core dependency. thanks geemus
* bump fog-core dep. thanks geemus
* remove require for missing digitalocean bin. thanks geemus
* Update licence.md. thanks pieceofcakeresul
* Update compose_common.rb. thanks tinguelyp
* Update post_create_snapshot.rb. thanks tinguelyp


## 1.38.0 03/28/2016
*Hash* 5e4bde2733adc08ba2d92b2d2824e2d3845fc5e5

Expand Down
4 changes: 2 additions & 2 deletions fog.gemspec
Expand Up @@ -11,8 +11,8 @@ Gem::Specification.new do |s|
## If your rubyforge_project name is different, then edit it and comment out
## the sub! line in the Rakefile
s.name = "fog"
s.version = "1.38.0"
s.date = "2016-08-03"
s.version = "1.39.0"
s.date = "2017-03-13"
s.rubyforge_project = "fog"

## Make sure your summary is short. The description may be as long
Expand Down
2 changes: 1 addition & 1 deletion lib/fog/version.rb
@@ -1,3 +1,3 @@
module Fog
VERSION = '1.38.0'
VERSION = '1.39.0'
end
8 changes: 4 additions & 4 deletions lib/tasks/changelog_task.rb
Expand Up @@ -31,7 +31,6 @@ def release_header
Statistic | Value
------------- | --------:
Collaborators | #{collaborators}
Downloads | #{downloads}
Forks | #{forks}
Open Issues | #{open_issues}
Watchers | #{watchers}
Expand Down Expand Up @@ -109,6 +108,7 @@ def former_mvp?(committer)
'Benson Kalahar',
'Brian Hartsock',
'bryanl',
'Cherdancev Evgeni',
'Chris Luo',
'Chris Roberts',
'Christopher Oliver',
Expand Down Expand Up @@ -184,9 +184,9 @@ def last_release_sha
end

def downloads
repsonse = Excon.get('https://rubygems.org/api/v1/gems/fog.json')
data = Fog::JSON.decode(repsonse.body)
data['downloads']
response = Excon.get('https://rubygems.org/api/v1/downloads/fog.json')
data = Fog::JSON.decode(response.body)
data['total_downloads']
end

def collaborators
Expand Down

0 comments on commit cca1da3

Please sign in to comment.