Commit 022d60b

mo <mo@mokhan.ca>
2019-04-30 21:05:39
publish 1.1.0
1 parent 3646782
lib/saml/kit/version.rb
@@ -2,6 +2,6 @@
 
 module Saml
   module Kit
-    VERSION = '1.0.31'
+    VERSION = '1.1.0'
   end
 end
spec/saml/kit/authentication_request_spec.rb
@@ -187,20 +187,20 @@ RSpec.describe Saml::Kit::AuthenticationRequest do
     end
   end
 
-  describe "#force_authn" do
-    context "when set to true" do
+  describe '#force_authn' do
+    context 'when set to true' do
       subject { described_class.build { |x| x.force_authn = true } }
 
       specify { expect(subject.force_authn).to be(true) }
     end
 
-    context "when set to false" do
+    context 'when set to false' do
       subject { described_class.build { |x| x.force_authn = false } }
 
       specify { expect(subject.force_authn).to be(false) }
     end
 
-    context "when not specified" do
+    context 'when not specified' do
       subject { described_class.build { |x| x.force_authn = nil } }
 
       specify { expect(subject.force_authn).to be(false) }
CHANGELOG.md
@@ -7,6 +7,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
 and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
 
 ## [Unreleased]
+- nil
+
+## [1.1.0] - 2019-04-30
 ### Added
 - Add support for ForceAuthn attribute on AuthnRequest
 
Gemfile.lock
@@ -1,7 +1,7 @@
 PATH
   remote: .
   specs:
-    saml-kit (1.0.31)
+    saml-kit (1.1.0)
       activemodel (>= 4.2.0)
       net-hippie (~> 0.1)
       xml-kit (>= 0.3.0, < 1.0.0)