Skip to content

Commit

Permalink
Releasing version 8.0.0-beta.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
ashfurrow committed Sep 19, 2016
1 parent 366a314 commit 063f3b4
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 10 deletions.
2 changes: 2 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Next

# 8.0.0-beta.1

- **Breaking Change** Support for `Swift 3` in favor of `Swift 2.x`.
- **Breaking Change** `fileName` and `mimeType` are now optional properties on a MultipartFormData object.
- Correct Alamofire `appendBodyPart` method id called in MultipartFormData.
Expand Down
12 changes: 6 additions & 6 deletions Demo/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
PODS:
- Alamofire (4.0.0)
- Moya (7.0.0):
- Moya/Core (= 7.0.0)
- Moya/Core (7.0.0):
- Moya (8.0.0-beta.1):
- Moya/Core (= 8.0.0-beta.1)
- Moya/Core (8.0.0-beta.1):
- Alamofire (~> 4.0.0)
- Result
- Moya/ReactiveCocoa (7.0.0):
- Moya/ReactiveCocoa (8.0.0-beta.1):
- Moya/Core
- ReactiveSwift
- Moya/RxSwift (7.0.0):
- Moya/RxSwift (8.0.0-beta.1):
- Moya/Core
- RxSwift (= 3.0.0-beta.1)
- Nimble (5.0.0-alpha.30p1)
Expand Down Expand Up @@ -70,7 +70,7 @@ CHECKOUT OPTIONS:

SPEC CHECKSUMS:
Alamofire: fef59f00388f267e52d9b432aa5d93dc97190f14
Moya: 24236189772d63640d9d2f7c819157f3bc947420
Moya: 63c4a59d2643c824df8c5a3b3a5f38dc2b48b055
Nimble: c5b995b4cd57789ec44b0cfb79640fc00e61a8c7
OHHTTPStubs: 3a42f25c00563b71355ac73112ba2324e9e6cef4
Quick: 31fb576b6cbb6b028cc5e0016e4366accbb346f5
Expand Down
2 changes: 1 addition & 1 deletion Moya.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "Moya"
s.version = "7.0.0"
s.version = "8.0.0-beta.1"
s.summary = "Network abstraction layer written in Swift"
s.description = <<-EOS
Moya abstracts network commands using Swift Generics to provide developers
Expand Down
4 changes: 2 additions & 2 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ task :release, :version do |task, args|
puts "Updating Demo project."
Dir.chdir('Demo') do
ENV['COCOAPODS_DISABLE_DETERMINISTIC_UUIDS'] = 'true'
sh "pod update Moya"
sh "bundle exec pod update Moya"
end

puts "Updating changelog."
Expand All @@ -146,7 +146,7 @@ task :release, :version do |task, args|
sh "git push --follow-tags"

puts "Pushing to CocoaPods trunk."
sh "pod trunk push Moya.podspec --allow-warnings"
sh "bundle exec pod trunk push Moya.podspec --allow-warnings"

puts "Pushing as a GitHub Release."
require 'octokit'
Expand Down
2 changes: 1 addition & 1 deletion Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Installation
For Moya, us the following entry in your Podfile:

```rb
pod 'Moya', '8.0.0-beta.1'
pod 'Moya', git: 'https://github.com/Moya/Moya.git', tag: '8.0.0-beta.1'
```

In any file you'd like to use Moya in, don't forget to
Expand Down

0 comments on commit 063f3b4

Please sign in to comment.