From ddcfe1247d85b1aa8ad31d501b9d7278a5e099e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?E=CC=81mile=20Be=CC=81lair?= Date: Tue, 1 Oct 2019 18:12:57 -0400 Subject: [PATCH] Bump to v0.1.1 --- fastlane-plugin-icon_banner/fastlane-plugin-icon_banner.gemspec | 2 +- .../lib/fastlane/plugin/icon_banner/version.rb | 2 +- lib/icon_banner.rb | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/fastlane-plugin-icon_banner/fastlane-plugin-icon_banner.gemspec b/fastlane-plugin-icon_banner/fastlane-plugin-icon_banner.gemspec index d8c73cd..c4d4953 100644 --- a/fastlane-plugin-icon_banner/fastlane-plugin-icon_banner.gemspec +++ b/fastlane-plugin-icon_banner/fastlane-plugin-icon_banner.gemspec @@ -16,7 +16,7 @@ Gem::Specification.new do |spec| spec.files = Dir['lib/**/*'] + %w(README.md LICENSE) spec.require_paths = ['lib'] - spec.add_dependency 'icon-banner', '~> 0.1.0' + spec.add_dependency 'icon-banner', '~> 0.1.1' spec.add_development_dependency 'fastlane', '~> 2.100' spec.add_development_dependency 'rspec', '~> 3.4' diff --git a/fastlane-plugin-icon_banner/lib/fastlane/plugin/icon_banner/version.rb b/fastlane-plugin-icon_banner/lib/fastlane/plugin/icon_banner/version.rb index 09a304a..afd9bcc 100644 --- a/fastlane-plugin-icon_banner/lib/fastlane/plugin/icon_banner/version.rb +++ b/fastlane-plugin-icon_banner/lib/fastlane/plugin/icon_banner/version.rb @@ -1,5 +1,5 @@ module Fastlane module IconBanner - VERSION = '0.1.0' + VERSION = '0.1.1' end end diff --git a/lib/icon_banner.rb b/lib/icon_banner.rb index d618c36..733bf9e 100644 --- a/lib/icon_banner.rb +++ b/lib/icon_banner.rb @@ -3,7 +3,7 @@ require 'commander' module IconBanner - VERSION = '0.1.0' + VERSION = '0.1.1' DESCRIPTION = 'IconBanner adds custom nice-looking banners over your mobile app icons' UI = FastlaneCore::UI