Skip to content

Commit

Permalink
Adding new version 3.6.1 (#432)
Browse files Browse the repository at this point in the history
  • Loading branch information
choran authored Oct 3, 2018
1 parent d4dbf8d commit 8040bfd
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ This version of the gem is compatible with `Ruby 2.1` and above.

Using bundler:

gem 'intercom', '~> 3.6.0'
gem 'intercom', '~> 3.6.1'

## Basic Usage

Expand Down
22 changes: 22 additions & 0 deletions changes.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,25 @@
3.6.1
#430 Allow all conversations to be listed
You can now iterate over all conversations for your app via:
intercom.conversations.all.each { |convo| ... }

3.6.0
BREAKING CHANGE companies
We updated companies to be able to list users via company_id as well as id (#428 )
Note that this is a breaking change as we had to remove the old way of listing users via company.

Previously it was:
intercom.companies.users(company.id)

Now you get a list of users in a company by Intercom Company ID
intercom.companies.users_by_intercom_company_id(company.id)

Now you get a list of users in a company by external company_id
intercom.companies.users_by_company_id(company.company_id)

Rate limit handling
We also improved the way we handle rate limits in PR #409 which was related to issue #405

3.5.23
- New type of error (ResourceNotUniqueError). Thrown when trying to create a resource that already exists in Intercom

Expand Down
2 changes: 1 addition & 1 deletion lib/intercom/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Intercom #:nodoc:
VERSION = "3.6.0"
VERSION = "3.6.1"
end

0 comments on commit 8040bfd

Please sign in to comment.