Skip to content

Commit 2a2d448

Browse files
authored
Merge pull request zendesk#480 from zendesk/bump-v1.35.0
Bump v1.35.0
2 parents 64ab993 + a9223c1 commit 2a2d448

File tree

5 files changed

+13
-5
lines changed

5 files changed

+13
-5
lines changed

CHANGELOG.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,15 @@
1-
# v1.35.0 (WIP)
1+
# v1.36.0 (WIP)
22

3-
- Abandoned support for Ruby 2.5 (eol)
3+
- Nothing yet
4+
5+
# v1.35.0
6+
7+
- Abandoned support for Ruby 2.5 (EOL)
48
- Tested in Ruby 3.1
9+
- Add `Webhook` resource
510
- Add `Organization#create_or_update`
11+
- Bug-fixing
12+
- Improved documentation
613

714
# v1.34.0
815

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ This Ruby gem is a generic wrapper around Zendesk's REST API. Follow this README
1010

1111
You can interact with all the resources defined in [`resources.rb`](lib/zendesk_api/resources.rb). Basically we have some cleaver code to convert Ruby objects into HTTP requests.
1212

13-
Please refer to our [API documentation](https://developer.zendesk.com) for the specific endpoints and once you understand the mapping between Ruby and the HTTP endpoints you should be able to call any endpoint.
13+
Please refer to our [API documentation](https://developer.zendesk.com/api-reference) for the specific endpoints and once you understand the mapping between Ruby and the HTTP endpoints you should be able to call any endpoint.
1414

1515
The Yard generated documentation is available in at [RubyDoc](https://www.rubydoc.info/gems/zendesk_api).
1616

lib/zendesk_api/collection.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -320,6 +320,8 @@ def to_s
320320
end
321321
end
322322

323+
alias to_str to_s
324+
323325
def to_param
324326
map(&:to_param)
325327
end

lib/zendesk_api/resources.rb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -758,7 +758,6 @@ def self.singular_resource_name
758758

759759
class Target < Resource; end
760760

761-
class Webhook < Resource; end
762761
class Invocation < Resource; end
763762
class Webhook < Resource
764763
has_many Invocation

lib/zendesk_api/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module ZendeskAPI
2-
VERSION = "1.34.0"
2+
VERSION = "1.35.0"
33
end

0 commit comments

Comments
 (0)