From 4f432fdc3f22cc6588e3a78498a5b50753c55480 Mon Sep 17 00:00:00 2001 From: Joel Hayhurst Date: Thu, 24 Feb 2022 13:34:58 -0800 Subject: [PATCH] Bump to 1.1.1 with changelog update --- CHANGELOG.md | 7 +++++++ Gemfile.lock | 2 +- lib/zoom/version.rb | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) 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