diff --git a/CHANGELOG.md b/CHANGELOG.md index ccfbe696..95fab0aa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# 1.1.1 + +### Fixes +* Use correct "question_and_answer" API spec +* Raise a `Zoom::Error` exception when HTTP status is at or above 400 +* Avoid SimpleCov error by making the gemspec permissive to newer versions + # 1.1.0 ### New features diff --git a/Gemfile.lock b/Gemfile.lock index f708c6a0..38553b59 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - zoom_rb (1.1.0) + zoom_rb (1.1.1) httparty (>= 0.13) json (>= 1.8) jwt diff --git a/lib/zoom/version.rb b/lib/zoom/version.rb index ae9b46be..bd356714 100644 --- a/lib/zoom/version.rb +++ b/lib/zoom/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Zoom - VERSION = '1.1.0' + VERSION = '1.1.1' end