From 4545071ca01ae2c061213e5f42f931380e4a8bba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafael=20Mendon=C3=A7a=20Fran=C3=A7a?= Date: Mon, 27 Mar 2023 21:28:02 +0000 Subject: [PATCH] Prepare for 0.4.0 --- Gemfile.lock | 12 ++++++------ erb_lint.gemspec | 4 ++-- lib/erb_lint/version.rb | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 412e43e6..644a138f 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - erb_lint (0.3.1) + erb_lint (0.4.0) activesupport better_html (>= 2.0.1) parser (>= 2.7.1.4) @@ -35,26 +35,26 @@ GEM concurrent-ruby (1.2.2) crass (1.0.6) diff-lcs (1.5.0) - erubi (1.11.0) + erubi (1.12.0) fakefs (1.5.1) i18n (1.12.0) concurrent-ruby (~> 1.0) loofah (2.19.1) crass (~> 1.0.2) nokogiri (>= 1.5.9) - mini_portile2 (2.8.0) + mini_portile2 (2.8.1) minitest (5.18.0) - nokogiri (1.13.10) + nokogiri (1.14.2) mini_portile2 (~> 2.8.0) racc (~> 1.4) parallel (1.22.1) parser (3.1.2.1) ast (~> 2.4.1) - racc (1.6.1) + racc (1.6.2) rails-dom-testing (2.0.3) activesupport (>= 4.2.0) nokogiri (>= 1.6) - rails-html-sanitizer (1.4.4) + rails-html-sanitizer (1.5.0) loofah (~> 2.19, >= 2.19.1) rainbow (3.1.1) rake (13.0.6) diff --git a/erb_lint.gemspec b/erb_lint.gemspec index be77e1ff..33bab62a 100644 --- a/erb_lint.gemspec +++ b/erb_lint.gemspec @@ -7,8 +7,8 @@ require "erb_lint/version" Gem::Specification.new do |s| s.name = "erb_lint" s.version = ERBLint::VERSION - s.authors = ["Justin Chan"] - s.email = ["justin.the.c@gmail.com"] + s.authors = ["Justin Chan", "Shopify Developers"] + s.email = ["ruby@shopify.com"] s.summary = "ERB lint tool" s.description = "ERB Linter tool." s.homepage = "https://github.com/Shopify/erb-lint" diff --git a/lib/erb_lint/version.rb b/lib/erb_lint/version.rb index 3507433e..81d1dbb5 100644 --- a/lib/erb_lint/version.rb +++ b/lib/erb_lint/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module ERBLint - VERSION = "0.3.1" + VERSION = "0.4.0" end