Skip to content

Commit

Permalink
Merge pull request #7 from futuredapp/release/0.5.0
Browse files Browse the repository at this point in the history
Release v0.5.0
  • Loading branch information
mkj-is authored Jan 20, 2020
2 parents be02c5a + 51311f0 commit 3978273
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 10 deletions.
6 changes: 3 additions & 3 deletions FTTestingKit.podspec
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
Pod::Spec.new do |s|
s.name = "FTTestingKit"
s.version = "0.4.0"
s.version = "0.5.0"
s.summary = "Mockup and asynchronous testing protocols and extensions."
s.description = <<-DESC
Testing helpers for easier testing mockups and asynchronous testing.
DESC
s.homepage = "https://github.com/thefuntasty/FTTestingKit"
s.homepage = "https://github.com/futuredapp/FTTestingKit"
s.license = { type: "MIT", file: "LICENSE" }
s.author = { "Matěj Kašpar Jirásek" => "[email protected]" }
s.social_media_url = "https://twitter.com/Futuredapps"
Expand All @@ -14,7 +14,7 @@ Pod::Spec.new do |s|
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.10'
s.tvos.deployment_target = '9.0'
s.source = { git: "https://github.com/thefuntasty/FTTestingKit.git", tag: s.version.to_s }
s.source = { git: "https://github.com/futuredapp/FTTestingKit.git", tag: s.version.to_s }

s.subspec 'Core' do |ss|
ss.source_files = "Sources/FTTestingKit/*"
Expand Down
10 changes: 6 additions & 4 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ GEM
faraday_middleware (0.13.1)
faraday (>= 0.7.4, < 1.0)
fastimage (2.1.7)
fastlane (2.139.0)
fastlane (2.140.0)
CFPropertyList (>= 2.3, < 4.0.0)
addressable (>= 2.3, < 3.0.0)
babosa (>= 1.0.2, < 2.0.0)
Expand Down Expand Up @@ -121,10 +121,12 @@ GEM
representable (~> 3.0)
retriable (>= 2.0, < 4.0)
signet (~> 0.12)
google-cloud-core (1.4.1)
google-cloud-core (1.5.0)
google-cloud-env (~> 1.0)
google-cloud-errors (~> 1.0)
google-cloud-env (1.3.0)
faraday (~> 0.11)
google-cloud-errors (1.0.0)
google-cloud-storage (1.25.1)
addressable (~> 2.5)
digest-crc (~> 0.4)
Expand All @@ -150,7 +152,7 @@ GEM
memoist (0.16.2)
mini_magick (4.10.1)
mini_mime (1.0.2)
minitest (5.13.0)
minitest (5.14.0)
molinillo (0.6.6)
multi_json (1.14.1)
multi_xml (0.6.0)
Expand Down Expand Up @@ -194,7 +196,7 @@ GEM
unf (0.1.4)
unf_ext
unf_ext (0.0.7.6)
unicode-display_width (1.6.0)
unicode-display_width (1.6.1)
word_wrap (1.0.0)
xcodeproj (1.14.0)
CFPropertyList (>= 2.3.3, < 4.0)
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,20 +13,20 @@ When using Swift package manager add this line
to your dependencies or install using Xcode 11 or newer:

```swift
.package(url: "https://github.com/thefuntasty/FTTestingKit.git", from: "0.4.0")
.package(url: "https://github.com/futuredapp/FTTestingKit.git", from: "0.5.0")
```

When using CocoaPods add following line to your `Podfile`:

```ruby
pod 'FTTestingKit', '~> 0.4'
pod 'FTTestingKit', '~> 0.5'
```

When using `PromiseKit` you can use either `FTTestingKitPromiseKit`
target for testing promises or add subspec to your `Podfile`:

```ruby
pod 'FTTestingKit', '~> 0.4', subspecs: ['PromiseKit']
pod 'FTTestingKit', '~> 0.5', subspecs: ['PromiseKit']
```

## Features
Expand Down

0 comments on commit 3978273

Please sign in to comment.