From a3b9421807a6d3b4a64954fee6d724a891c0924f Mon Sep 17 00:00:00 2001 From: Zachary Waldowski Date: Mon, 16 Sep 2019 16:35:30 -0400 Subject: [PATCH 1/2] Update gems --- Gemfile.lock | 36 +++++++++++++++--------------------- 1 file changed, 15 insertions(+), 21 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 7d52c291..b8a41db8 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,14 +1,14 @@ GEM remote: https://rubygems.org/ specs: - CFPropertyList (3.0.0) + CFPropertyList (3.0.1) activesupport (4.2.11.1) i18n (~> 0.7) minitest (~> 5.1) thread_safe (~> 0.3, >= 0.3.4) tzinfo (~> 1.1) - addressable (2.6.0) - public_suffix (>= 2.0.2, < 4.0) + addressable (2.7.0) + public_suffix (>= 2.0.2, < 5.0) atomos (0.1.3) babosa (1.0.2) claide (1.0.3) @@ -66,8 +66,8 @@ GEM http-cookie (~> 1.0.0) faraday_middleware (0.13.1) faraday (>= 0.7.4, < 1.0) - fastimage (2.1.5) - fastlane (2.129.0) + fastimage (2.1.7) + fastlane (2.131.0) CFPropertyList (>= 2.3, < 4.0.0) addressable (>= 2.3, < 3.0.0) babosa (>= 1.0.2, < 2.0.0) @@ -116,9 +116,9 @@ GEM representable (~> 3.0) retriable (>= 2.0, < 4.0) signet (~> 0.9) - google-cloud-core (1.3.0) + google-cloud-core (1.3.1) google-cloud-env (~> 1.0) - google-cloud-env (1.2.0) + google-cloud-env (1.2.1) faraday (~> 0.11) google-cloud-storage (1.16.0) digest-crc (~> 0.4) @@ -138,22 +138,22 @@ GEM httpclient (2.8.3) i18n (0.9.5) concurrent-ruby (~> 1.0) - jazzy (0.10.0) + jazzy (0.11.0) cocoapods (~> 1.5) mustache (~> 1.1) open4 redcarpet (~> 3.4) rouge (>= 2.0.6, < 4.0) - sass (~> 3.6) + sassc (~> 2.1) sqlite3 (~> 1.3) xcinvoke (~> 0.3.0) json (2.2.0) jwt (2.1.0) liferaft (0.0.6) memoist (0.16.0) - mime-types (3.2.2) + mime-types (3.3) mime-types-data (~> 3.2015) - mime-types-data (3.2019.0331) + mime-types-data (3.2019.0904) mini_magick (4.9.5) minitest (5.11.3) molinillo (0.6.6) @@ -169,9 +169,6 @@ GEM os (1.0.1) plist (3.5.0) public_suffix (2.0.5) - rb-fsevent (0.10.3) - rb-inotify (0.10.0) - ffi (~> 1.0) redcarpet (3.5.0) representable (3.0.4) declarative (< 0.1.0) @@ -180,12 +177,9 @@ GEM retriable (3.1.2) rouge (2.0.7) ruby-macho (1.4.0) - rubyzip (1.2.3) - sass (3.7.4) - sass-listen (~> 4.0.0) - sass-listen (4.0.0) - rb-fsevent (~> 0.9, >= 0.9.4) - rb-inotify (~> 0.9, >= 0.9.7) + rubyzip (1.2.4) + sassc (2.2.0) + ffi (~> 1.9) security (0.1.3) semantic (1.6.1) signet (0.11.0) @@ -193,7 +187,7 @@ GEM faraday (~> 0.9) jwt (>= 1.5, < 3.0) multi_json (~> 1.10) - simctl (1.6.5) + simctl (1.6.6) CFPropertyList naturally slack-notifier (2.3.2) From 7595b7656baf52c75e6e3389d21189281e10aaaa Mon Sep 17 00:00:00 2001 From: Zachary Waldowski Date: Mon, 16 Sep 2019 16:32:47 -0400 Subject: [PATCH 2/2] Bump version to 4.1.0 --- BNRDeferred.podspec | 2 +- Configurations/Base.xcconfig | 2 +- Documentation/Guide/Getting Started.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/BNRDeferred.podspec b/BNRDeferred.podspec index 0e0cc0af..60b3c6bb 100644 --- a/BNRDeferred.podspec +++ b/BNRDeferred.podspec @@ -1,7 +1,7 @@ Pod::Spec.new do |s| # ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― # s.name = "BNRDeferred" - s.version = "4.0.0" + s.version = "4.1.0" s.summary = "Work with values that haven't been determined yet." s.description = <<-DESC diff --git a/Configurations/Base.xcconfig b/Configurations/Base.xcconfig index 4d84ca38..3fe9e31e 100755 --- a/Configurations/Base.xcconfig +++ b/Configurations/Base.xcconfig @@ -25,7 +25,7 @@ CODE_SIGN_IDENTITY = DEVELOPMENT_TEAM = // Versioning -CURRENT_PROJECT_VERSION = 4.0.0 +CURRENT_PROJECT_VERSION = 4.1.0 VERSION_INFO_PREFIX = VERSIONING_SYSTEM = apple-generic diff --git a/Documentation/Guide/Getting Started.md b/Documentation/Guide/Getting Started.md index ca6cb475..96c6b883 100644 --- a/Documentation/Guide/Getting Started.md +++ b/Documentation/Guide/Getting Started.md @@ -54,7 +54,7 @@ import PackageDescription let package = Package( name: "My Extremely Nerdy App", dependencies: [ - .package(url: "https://github.com/bignerdranch/Deferred.git", from: "4.0.0"), + .package(url: "https://github.com/bignerdranch/Deferred.git", from: "4.1.0"), ] ) ```