diff --git a/CHANGELOG.md b/CHANGELOG.md index f955564..4e51794 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ ## main (unreleased) +## 2.0.3 (2023-02-10) + +* [#80](https://github.com/Shopify/deprecation_toolkit/pull/80): Filter out stack trace from Gem::Deprecate deprecation messages + ## 2.0.2 (2023-02-08) * [#78](https://github.com/Shopify/deprecation_toolkit/pull/78): Show deprecations without stacktrace. (@shioyama) diff --git a/Gemfile.lock b/Gemfile.lock index ae4bc50..bf473b6 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - deprecation_toolkit (2.0.2) + deprecation_toolkit (2.0.3) activesupport (>= 5.2) GEM diff --git a/lib/deprecation_toolkit/version.rb b/lib/deprecation_toolkit/version.rb index 5923442..21f7228 100644 --- a/lib/deprecation_toolkit/version.rb +++ b/lib/deprecation_toolkit/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module DeprecationToolkit - VERSION = "2.0.2" + VERSION = "2.0.3" end