From 52063d967dc4ec90fec68d590916c0e6978a4861 Mon Sep 17 00:00:00 2001 From: Max Desiatov Date: Sat, 9 Nov 2019 21:19:00 +0000 Subject: [PATCH] Bump version to 0.6.0, update CHANGELOG.md --- ApolloAlamofire.podspec | 2 +- ApolloAlamofire/Classes/AlamofireTransport.swift | 2 +- CHANGELOG.md | 8 ++++++++ Example/Podfile.lock | 4 ++-- README.md | 4 ++-- 5 files changed, 14 insertions(+), 6 deletions(-) diff --git a/ApolloAlamofire.podspec b/ApolloAlamofire.podspec index 899ad19..788e543 100644 --- a/ApolloAlamofire.podspec +++ b/ApolloAlamofire.podspec @@ -8,7 +8,7 @@ Pod::Spec.new do |s| s.name = 'ApolloAlamofire' - s.version = '0.5.0' + s.version = '0.6.0' s.summary = 'Alamofire transport for Apollo iOS GraphQL library' # This description is used to generate tags and improve search results. diff --git a/ApolloAlamofire/Classes/AlamofireTransport.swift b/ApolloAlamofire/Classes/AlamofireTransport.swift index 22b9ef2..9a0304f 100644 --- a/ApolloAlamofire/Classes/AlamofireTransport.swift +++ b/ApolloAlamofire/Classes/AlamofireTransport.swift @@ -26,7 +26,7 @@ public class AlamofireTransport: NetworkTransport { headers: HTTPHeaders? = nil, loggingEnabled: Bool = false, clientName: String = "ApolloAlamofire", - clientVersion: String = "0.5.0" + clientVersion: String = "0.6.0" ) { self.sessionManager = sessionManager self.url = url diff --git a/CHANGELOG.md b/CHANGELOG.md index 6954fab..e99a1bf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Change Log +## [0.6.0](https://github.com/graphql-community/ApolloAlamofire/tree/0.6.0) (2019-11-09) + +This release updates Apollo dependency to 0.19.0 and Alamofire to 4.9.1. + +**Merged pull requests:** + +- Update dependencies, test with Xcode 10.3 [\#14](https://github.com/graphql-community/ApolloAlamofire/pull/14) ([MaxDesiatov](https://github.com/MaxDesiatov)) + ## [0.5.0](https://github.com/graphql-community/ApolloAlamofire/tree/0.5.0) (2019-07-12) This release adds support for Carthage package manager. diff --git a/Example/Podfile.lock b/Example/Podfile.lock index 104c84d..9da1b33 100644 --- a/Example/Podfile.lock +++ b/Example/Podfile.lock @@ -3,7 +3,7 @@ PODS: - Apollo (0.19.0): - Apollo/Core (= 0.19.0) - Apollo/Core (0.19.0) - - ApolloAlamofire (0.5.0): + - ApolloAlamofire (0.6.0): - Alamofire (~> 4.9.1) - Apollo (~> 0.19.0) @@ -22,7 +22,7 @@ EXTERNAL SOURCES: SPEC CHECKSUMS: Alamofire: 85e8a02c69d6020a0d734f6054870d7ecb75cf18 Apollo: 4f0fea775a98bba34935764e49d27f2d3b1a5f21 - ApolloAlamofire: 450e37668e395d2e5e90d9c7ca5e285916479981 + ApolloAlamofire: 85c6c4826f1c4e90e4e9b4476ac42b56b9e637a6 PODFILE CHECKSUM: 3d8d02ef1af8e9f3ad5f5d2ba9652a1dafc83875 diff --git a/README.md b/README.md index 204763a..71d33a6 100644 --- a/README.md +++ b/README.md @@ -129,7 +129,7 @@ $ pod install Inside of your `Podfile`, specify the `ApolloAlamofire` pod: ```ruby -pod 'ApolloAlamofire', '~> 0.5.0' +pod 'ApolloAlamofire', '~> 0.6.0' ``` Then, run the following command: @@ -158,7 +158,7 @@ $ brew install carthage Inside of your `Cartfile`, add GitHub path to `ApolloAlamofire`: ```ogdl -github "graphql-community/ApolloAlamofire" ~> 0.5.0 +github "graphql-community/ApolloAlamofire" ~> 0.6.0 ``` Then, run the following command to build the framework: