summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormo <mo.khan@gmail.com>2017-12-16 12:12:38 -0700
committermo <mo.khan@gmail.com>2017-12-16 12:12:38 -0700
commit52410d241c4190d7577003246c21204e13117f82 (patch)
treecff4f3b8841ec1cd39d696de7726562b1ff681fc
parentd0507a534c25146caec7f45cf7d998e121d18716 (diff)
specify version that deprecation will be removed.v0.2.7
-rw-r--r--lib/saml/kit.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/saml/kit.rb b/lib/saml/kit.rb
index fbf1317..165d0ef 100644
--- a/lib/saml/kit.rb
+++ b/lib/saml/kit.rb
@@ -74,7 +74,7 @@ module Saml
end
def deprecate(message)
- @deprecation ||= ActiveSupport::Deprecation.new('next-release', 'saml-kit')
+ @deprecation ||= ActiveSupport::Deprecation.new('1.0.0', 'saml-kit')
@deprecation.deprecation_warning(message)
end
end