Skip to content

Commit

Permalink
Update gemspec and changelog for 0.6.6 and README (#35)
Browse files Browse the repository at this point in the history
* Update changelog for 0.6.5

* Update README.md

* Fix comment

* Update facebook_ads.gemspec

* Update facebook_ads.gemspec

* Update CHANGELOG.md
  • Loading branch information
amosharrafa committed Nov 29, 2018
1 parent 2ff35be commit 86d7322
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
## 0.6.4 (2018-11-26)
## 0.6.6 (2018-11-29)
- Added ability to pass date range when fetching `ad_set_activities`.

## 0.6.5 (2018-11-26)
- Expose `ad_set_activities` for `ad_sets`.

## 0.6.4 (2018-10-03)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ activities = ad_set.activities

Fetch all activities in last 48 hours for an ad set:
```ruby
activities = ad_set.activities(since: 2.days.ago)
activities = ad_set.activities(from: 2.days.ago, to: Date.today)
```

___
Expand Down
4 changes: 2 additions & 2 deletions facebook_ads.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@

# To publish the next version:
# gem build facebook_ads.gemspec
# gem push facebook_ads-0.6.4.gem
# gem push facebook_ads-0.6.6.gem
Gem::Specification.new do |s|
s.name = 'facebook_ads'
s.version = '0.6.5'
s.version = '0.6.6'
s.platform = Gem::Platform::RUBY
s.licenses = ['MIT']
s.authors = ['Chris Estreich']
Expand Down

0 comments on commit 86d7322

Please sign in to comment.