Skip to content

Commit

Permalink
Prep 2.1.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
rwojsznis committed Jun 19, 2017
1 parent 35e6d2e commit f0be826
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 2.1.0

Date: 2017-06-19

- `application_form` endpoint handler #11 (@klaszcze)

## 2.0.0

Date: 2015-11-14
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ client.stages # => Array of hashes
client.recruiters # => Array of hashes
client.job_details(shortcode) # => Hash
client.job_questions(shortcode) # => Array of hashes
client.job_application_form(shortcode) # => Hash
client.job_application_form(shortcode) # => Hash
client.job_candidates(shortcode, :stage => stage_slug, :limit => 100) # => Array of hashes:
# if given stage limits to given stage
# if given limit lists the last `limit` added candidates
Expand Down
1 change: 0 additions & 1 deletion lib/workable/client.rb
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,6 @@ def job_questions(shortcode)

# application form questions for job
# @param shortcode [String] job short code

def job_application_form(shortcode)
@transform_to.apply(:question, get_request("jobs/#{shortcode}/application_form"))
end
Expand Down
2 changes: 1 addition & 1 deletion lib/workable/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Workable
VERSION = '2.0.0'
VERSION = '2.1.0'
end

0 comments on commit f0be826

Please sign in to comment.