From c1839522ca2c451181f1c9c9a3b5f8b37c7a383e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" Date: Tue, 23 Apr 2019 14:15:40 +0000 Subject: [PATCH 1/2] build: bump github-pages from 197 to 198 in /docs Bumps [github-pages](https://github.com/github/pages-gem) from 197 to 198. - [Release notes](https://github.com/github/pages-gem/releases) - [Commits](https://github.com/github/pages-gem/commits) Signed-off-by: dependabot[bot] --- docs/Gemfile.lock | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/Gemfile.lock b/docs/Gemfile.lock index fcfe45b463..71f1ce21f8 100644 --- a/docs/Gemfile.lock +++ b/docs/Gemfile.lock @@ -1,7 +1,7 @@ GEM remote: https://rubygems.org/ specs: - activesupport (4.2.10) + activesupport (4.2.11.1) i18n (~> 0.7) minitest (~> 5.1) thread_safe (~> 0.3, >= 0.3.4) @@ -31,10 +31,10 @@ GEM ffi (1.10.0) forwardable-extended (2.6.0) gemoji (3.0.0) - github-pages (197) - activesupport (= 4.2.10) + github-pages (198) + activesupport (= 4.2.11.1) github-pages-health-check (= 1.16.1) - jekyll (= 3.7.4) + jekyll (= 3.8.5) jekyll-avatar (= 0.6.0) jekyll-coffeescript (= 1.1.1) jekyll-commonmark-ghpages (= 0.1.5) @@ -97,7 +97,7 @@ GEM http_parser.rb (0.6.0) i18n (0.9.5) concurrent-ruby (~> 1.0) - jekyll (3.7.4) + jekyll (3.8.5) addressable (~> 2.4) colorator (~> 1.0) em-websocket (~> 0.5) From 47c886117b795ca6b04b013651b541ecd16c963f Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Tue, 23 Apr 2019 09:41:04 -0700 Subject: [PATCH 2/2] compat: add missing frozen string literals. These weren't added yet due to CI being run at different times to merges. --- Library/Homebrew/compat.rb | 2 ++ Library/Homebrew/compat/cask/dsl/version.rb | 2 ++ 2 files changed, 4 insertions(+) diff --git a/Library/Homebrew/compat.rb b/Library/Homebrew/compat.rb index 6d164787ce..35bd487de4 100644 --- a/Library/Homebrew/compat.rb +++ b/Library/Homebrew/compat.rb @@ -1 +1,3 @@ +# frozen_string_literal: true + require "compat/cask/dsl/version" diff --git a/Library/Homebrew/compat/cask/dsl/version.rb b/Library/Homebrew/compat/cask/dsl/version.rb index 107e628eab..f83e8a3e9b 100644 --- a/Library/Homebrew/compat/cask/dsl/version.rb +++ b/Library/Homebrew/compat/cask/dsl/version.rb @@ -1,3 +1,5 @@ +# frozen_string_literal: true + module Cask class DSL class Version < ::String