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