Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ intercom = Intercom::Client.new(token: 'my_token')

```ruby
# With a versioned app:
intercom = Intercom::Client.new(token: 'my_token', api_version: '2.1')
intercom = Intercom::Client.new(token: 'my_token', api_version: '2.2')
```

If you are building a third party application you can get your access_tokens by [setting-up-oauth](https://developers.intercom.io/page/setting-up-oauth) for Intercom.
Expand Down
7 changes: 7 additions & 0 deletions changes.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
4.1.2
- Adding support for company delete.
- Adding support for archiving/unarchiving contacts.
- Adding support for listing contact segments.
- Fixed issue with scroll collection proxy.
- Fixed issue with running assignment rules on a conversation.

4.1.1
- Fixed bug with deprecated lead resource.

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 = "4.1.1"
VERSION = "4.1.2"
end