From 688d9e927d8b2d22a8b4daa870740d234b7b76c8 Mon Sep 17 00:00:00 2001 From: Sixto Martin Date: Mon, 29 Apr 2019 18:34:21 +0200 Subject: [PATCH] Release 1.10.2 --- changelog.md | 10 ++++++++++ lib/onelogin/ruby-saml/version.rb | 2 +- ruby-saml.gemspec | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/changelog.md b/changelog.md index c24ceb914..d546e370f 100644 --- a/changelog.md +++ b/changelog.md @@ -1,4 +1,14 @@ # RubySaml Changelog + +### 1.10.2 (Apr 29, 2019) + +* Add valid until, accessor +* Fix Rubygem metadata that requested nokogiri <= 1.5.11 + +### 1.10.1 (Apr 08, 2019) + +* Fix ruby 1.8.7 incompatibilities + ### 1.10.0 (Mar 21, 2019) * Add Subject support on AuthNRequest to allow SPs provide info to the IdP about the user to be authenticated * Improves IdpMetadataParser to allow parse multiple IDPSSODescriptors diff --git a/lib/onelogin/ruby-saml/version.rb b/lib/onelogin/ruby-saml/version.rb index ebb78e0f0..5cd4db026 100644 --- a/lib/onelogin/ruby-saml/version.rb +++ b/lib/onelogin/ruby-saml/version.rb @@ -1,5 +1,5 @@ module OneLogin module RubySaml - VERSION = '1.10.1' + VERSION = '1.10.2' end end diff --git a/ruby-saml.gemspec b/ruby-saml.gemspec index 0573cdd3f..bb9aa7064 100644 --- a/ruby-saml.gemspec +++ b/ruby-saml.gemspec @@ -41,7 +41,7 @@ Gem::Specification.new do |s| elsif RUBY_VERSION < '2.1' s.add_runtime_dependency('nokogiri', '>= 1.5.10', '<= 1.6.8.1') else - s.add_runtime_dependency('nokogiri', '>= 1.8.2') + s.add_runtime_dependency('nokogiri', '>= 1.5.10') end s.add_development_dependency('minitest', '~> 5.5')