From 2a61b3e7e2ef90cdb6484a06392ca9ced5214123 Mon Sep 17 00:00:00 2001 From: Rob Scanlon Date: Tue, 24 May 2022 17:21:56 -0400 Subject: [PATCH] Release v0.3.3 (#193) --- CHANGELOG.md | 5 +++++ Gemfile.lock | 14 +++++++------- lib/inferno/version.rb | 2 +- 3 files changed, 13 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 613cbe92a..d01aa636c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +# 0.3.3 + +* UI accessibility improvements. +* Force sending text/html Content-Type header for app root and session pages. + # 0.3.2 * Add IE meta tag. diff --git a/Gemfile.lock b/Gemfile.lock index d6e2a71a0..156ad2e27 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - inferno_core (0.3.2) + inferno_core (0.3.3) activesupport (~> 6.1) blueprinter (= 0.25.2) dotenv (~> 2.7) @@ -25,7 +25,7 @@ PATH GEM remote: https://rubygems.org/ specs: - activesupport (6.1.4.4) + activesupport (6.1.6) concurrent-ruby (~> 1.0, >= 1.0.2) i18n (>= 1.6, < 2) minitest (>= 5.1) @@ -42,7 +42,7 @@ GEM codecov (0.6.0) simplecov (>= 0.15, < 0.22) coderay (1.1.3) - concurrent-ruby (1.1.9) + concurrent-ruby (1.1.10) connection_pool (2.2.5) crack (0.4.5) rexml @@ -158,7 +158,7 @@ GEM http_router (0.11.2) rack (>= 1.0.0) url_mount (~> 0.2.1) - i18n (1.9.1) + i18n (1.10.0) concurrent-ruby (~> 1.0) ice_nine (0.11.2) jwt (2.3.0) @@ -172,9 +172,9 @@ GEM multipart-post (2.1.1) netrc (0.11.0) nio4r (2.5.8) - nokogiri (1.13.5-x86_64-darwin) + nokogiri (1.13.6-x86_64-darwin) racc (~> 1.4) - nokogiri (1.13.5-x86_64-linux) + nokogiri (1.13.6-x86_64-linux) racc (~> 1.4) oauth2 (1.4.9) faraday (>= 0.17.3, < 3.0) @@ -192,7 +192,7 @@ GEM pry-byebug (3.9.0) byebug (~> 11.0) pry (~> 0.13.0) - public_suffix (4.0.6) + public_suffix (4.0.7) puma (5.6.4) nio4r (~> 2.0) racc (1.6.0) diff --git a/lib/inferno/version.rb b/lib/inferno/version.rb index d5f01b207..e54d16e9a 100644 --- a/lib/inferno/version.rb +++ b/lib/inferno/version.rb @@ -1,4 +1,4 @@ module Inferno # Standard patterns for gem versions: https://guides.rubygems.org/patterns/ - VERSION = '0.3.2'.freeze + VERSION = '0.3.3'.freeze end