From e47a33596faebeb57abb0f954883dd60eaa0e709 Mon Sep 17 00:00:00 2001 From: Michael Rose Date: Thu, 22 Sep 2016 21:14:18 -0400 Subject: [PATCH] Remove `pre` from version and bump to 4.0.1 --- minimal-mistakes-jekyll.gemspec | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/minimal-mistakes-jekyll.gemspec b/minimal-mistakes-jekyll.gemspec index cfda04f..ac7a825 100644 --- a/minimal-mistakes-jekyll.gemspec +++ b/minimal-mistakes-jekyll.gemspec @@ -2,7 +2,7 @@ Gem::Specification.new do |spec| spec.name = "minimal-mistakes-jekyll" - spec.version = "4.0.0.pre.beta1" + spec.version = "4.0.1" spec.authors = ["Michael Rose"] spec.summary = %q{A flexible two-column Jekyll theme.} @@ -11,7 +11,12 @@ Gem::Specification.new do |spec| spec.metadata["plugin_type"] = "theme" - spec.files = `git ls-files -z`.split("\x0").select { |f| f.match(%r{^(_layouts|_includes|_sass|assets|LICENSE|README|CHANGELOG)/i}) } + spec.files = `git ls-files -z`.split("\x0").select do |f| + f.match(%r{^((_includes|_layouts|_sass|assets)/|(LICENSE|README|CHANGELOG)((\.(txt|md|markdown)|$)))}i) + end + + spec.bindir = "exe" + spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.add_development_dependency "jekyll", "~> 3.2" spec.add_development_dependency "bundler", "~> 1.12" -- 2.43.0