diff --git a/CHANGELOG.md b/CHANGELOG.md index 84f8feeb..908adb70 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ # Upcoming Release -- Any unhandled error is now logged to the configured rails logger by default. You can also now supply a custom callable that will be used to handle those exceptions instead. +# v0.3.1 8-06-2020 + +- [Any unhandled error is now logged](https://github.com/lessonly/scim_rails/pull/27 +) to the configured rails logger by default. You can also now supply a custom callable that will be used to handle those exceptions instead. +- [Fix a bug](https://github.com/lessonly/scim_rails/pull/30) where an exception was raised when the patch endpoint receive a malformed or enexpected request. diff --git a/lib/scim_rails/version.rb b/lib/scim_rails/version.rb index 2e228b2f..a37e8444 100644 --- a/lib/scim_rails/version.rb +++ b/lib/scim_rails/version.rb @@ -1,3 +1,5 @@ +# frozen_string_literal: true + module ScimRails - VERSION = '0.3.0' + VERSION = "0.3.1" end