Skip to content
This repository was archived by the owner on Mar 23, 2025. It is now read-only.

Commit 55494a4

Browse files
authored
Merge pull request #182 from manicmaniac/release/0.9.0
Release 0.9.0
2 parents 99a1641 + 239322e commit 55494a4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+58
-55
lines changed

.github/workflows/release.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,15 @@ jobs:
99
runs-on: macOS-latest
1010
steps:
1111
- uses: actions/checkout@v2
12+
- name: Select Xcode
13+
run: sudo xcode-select -s /Applications/Xcode_11.3.app/Contents/Developer
1214
- name: Install dependencies
1315
run: |
1416
gem install bundler -v 1.17.3
1517
bundle install --without documentation --jobs=3 --retry=3
18+
- name: Update CocoaPods repository
19+
run: bundle exec pod repo update
1620
- name: Publish to CocoaPods
1721
run: bundle exec pod trunk push --swift-version=5.1 --verbose ApolloDeveloperKit.podspec
1822
env:
1923
COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }}
20-
DEVELOPER_DIR: /Applications/Xcode_11.1.app/Contents/Developer

ApolloDeveloperKit.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |spec|
22
spec.name = "ApolloDeveloperKit"
3-
spec.version = "0.8.0"
3+
spec.version = "0.9.0"
44
spec.summary = "Visual debugger for Apollo iOS GraphQL client"
55
spec.description = <<-DESC
66
ApolloDeveloperKit is an iOS library which works as a bridge between Apollo iOS client and Apollo Client Developer tools.

Example/iOS/Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<key>CFBundlePackageType</key>
2727
<string>APPL</string>
2828
<key>CFBundleShortVersionString</key>
29-
<string>0.8.0</string>
29+
<string>0.9.0</string>
3030
<key>CFBundleVersion</key>
3131
<string>1</string>
3232
<key>LSRequiresIPhoneOS</key>

Example/macOS/Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<key>CFBundlePackageType</key>
2929
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
3030
<key>CFBundleShortVersionString</key>
31-
<string>0.8.0</string>
31+
<string>0.9.0</string>
3232
<key>CFBundleVersion</key>
3333
<string>1</string>
3434
<key>LSMinimumSystemVersion</key>

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Add the following lines to your Podfile.
3838

3939
```ruby
4040
pod 'Apollo'
41-
pod 'ApolloDeveloperKit', '~> 0.8.0'
41+
pod 'ApolloDeveloperKit', '~> 0.9.0'
4242
```
4343

4444
Then run `pod install`.

Sources/Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>0.8.0</string>
18+
<string>0.9.0</string>
1919
<key>CFBundleVersion</key>
2020
<string>$(CURRENT_PROJECT_VERSION)</string>
2121
</dict>

Tests/Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>BNDL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>0.8.0</string>
18+
<string>0.9.0</string>
1919
<key>CFBundleVersion</key>
2020
<string>1</string>
2121
</dict>

docs/Classes.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ <h4>Declaration</h4>
209209
</section>
210210
</section>
211211
<section id="footer">
212-
<p>&copy; 2020 <a class="link" href="https://github.com/manicmaniac/ApolloDeveloperKit" target="_blank" rel="external">Ryosuke Ito</a>. All rights reserved. (Last updated: 2020-02-02)</p>
212+
<p>&copy; 2020 <a class="link" href="https://github.com/manicmaniac/ApolloDeveloperKit" target="_blank" rel="external">Ryosuke Ito</a>. All rights reserved. (Last updated: 2020-02-16)</p>
213213
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.11.1</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
214214
</section>
215215
</article>

docs/Classes/ApolloDebugServer.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,7 @@ <h4>Declaration</h4>
409409
</section>
410410
</section>
411411
<section id="footer">
412-
<p>&copy; 2020 <a class="link" href="https://github.com/manicmaniac/ApolloDeveloperKit" target="_blank" rel="external">Ryosuke Ito</a>. All rights reserved. (Last updated: 2020-02-02)</p>
412+
<p>&copy; 2020 <a class="link" href="https://github.com/manicmaniac/ApolloDeveloperKit" target="_blank" rel="external">Ryosuke Ito</a>. All rights reserved. (Last updated: 2020-02-16)</p>
413413
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.11.1</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
414414
</section>
415415
</article>

docs/Classes/DebuggableNetworkTransport.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ <h4>Declaration</h4>
256256
</section>
257257
</section>
258258
<section id="footer">
259-
<p>&copy; 2020 <a class="link" href="https://github.com/manicmaniac/ApolloDeveloperKit" target="_blank" rel="external">Ryosuke Ito</a>. All rights reserved. (Last updated: 2020-02-02)</p>
259+
<p>&copy; 2020 <a class="link" href="https://github.com/manicmaniac/ApolloDeveloperKit" target="_blank" rel="external">Ryosuke Ito</a>. All rights reserved. (Last updated: 2020-02-16)</p>
260260
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.11.1</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
261261
</section>
262262
</article>

docs/Classes/DebuggableNormalizedCache.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ <h4>Declaration</h4>
337337
</section>
338338
</section>
339339
<section id="footer">
340-
<p>&copy; 2020 <a class="link" href="https://github.com/manicmaniac/ApolloDeveloperKit" target="_blank" rel="external">Ryosuke Ito</a>. All rights reserved. (Last updated: 2020-02-02)</p>
340+
<p>&copy; 2020 <a class="link" href="https://github.com/manicmaniac/ApolloDeveloperKit" target="_blank" rel="external">Ryosuke Ito</a>. All rights reserved. (Last updated: 2020-02-16)</p>
341341
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.11.1</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
342342
</section>
343343
</article>

docs/Enums.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ <h4>Declaration</h4>
138138
</section>
139139
</section>
140140
<section id="footer">
141-
<p>&copy; 2020 <a class="link" href="https://github.com/manicmaniac/ApolloDeveloperKit" target="_blank" rel="external">Ryosuke Ito</a>. All rights reserved. (Last updated: 2020-02-02)</p>
141+
<p>&copy; 2020 <a class="link" href="https://github.com/manicmaniac/ApolloDeveloperKit" target="_blank" rel="external">Ryosuke Ito</a>. All rights reserved. (Last updated: 2020-02-16)</p>
142142
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.11.1</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
143143
</section>
144144
</article>

docs/Enums/HTTPServerError.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ <h4>Declaration</h4>
227227
</section>
228228
</section>
229229
<section id="footer">
230-
<p>&copy; 2020 <a class="link" href="https://github.com/manicmaniac/ApolloDeveloperKit" target="_blank" rel="external">Ryosuke Ito</a>. All rights reserved. (Last updated: 2020-02-02)</p>
230+
<p>&copy; 2020 <a class="link" href="https://github.com/manicmaniac/ApolloDeveloperKit" target="_blank" rel="external">Ryosuke Ito</a>. All rights reserved. (Last updated: 2020-02-16)</p>
231231
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.11.1</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
232232
</section>
233233
</article>

docs/Extensions.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -458,7 +458,7 @@ <h4>Declaration</h4>
458458
</section>
459459
</section>
460460
<section id="footer">
461-
<p>&copy; 2020 <a class="link" href="https://github.com/manicmaniac/ApolloDeveloperKit" target="_blank" rel="external">Ryosuke Ito</a>. All rights reserved. (Last updated: 2020-02-02)</p>
461+
<p>&copy; 2020 <a class="link" href="https://github.com/manicmaniac/ApolloDeveloperKit" target="_blank" rel="external">Ryosuke Ito</a>. All rights reserved. (Last updated: 2020-02-16)</p>
462462
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.11.1</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
463463
</section>
464464
</article>

docs/Extensions/CFArray.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ <h4>Declaration</h4>
142142
</section>
143143
</section>
144144
<section id="footer">
145-
<p>&copy; 2020 <a class="link" href="https://github.com/manicmaniac/ApolloDeveloperKit" target="_blank" rel="external">Ryosuke Ito</a>. All rights reserved. (Last updated: 2020-02-02)</p>
145+
<p>&copy; 2020 <a class="link" href="https://github.com/manicmaniac/ApolloDeveloperKit" target="_blank" rel="external">Ryosuke Ito</a>. All rights reserved. (Last updated: 2020-02-16)</p>
146146
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.11.1</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
147147
</section>
148148
</article>

docs/Extensions/CFBoolean.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ <h4>Declaration</h4>
142142
</section>
143143
</section>
144144
<section id="footer">
145-
<p>&copy; 2020 <a class="link" href="https://github.com/manicmaniac/ApolloDeveloperKit" target="_blank" rel="external">Ryosuke Ito</a>. All rights reserved. (Last updated: 2020-02-02)</p>
145+
<p>&copy; 2020 <a class="link" href="https://github.com/manicmaniac/ApolloDeveloperKit" target="_blank" rel="external">Ryosuke Ito</a>. All rights reserved. (Last updated: 2020-02-16)</p>
146146
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.11.1</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
147147
</section>
148148
</article>

docs/Extensions/CFDictionary.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ <h4>Declaration</h4>
142142
</section>
143143
</section>
144144
<section id="footer">
145-
<p>&copy; 2020 <a class="link" href="https://github.com/manicmaniac/ApolloDeveloperKit" target="_blank" rel="external">Ryosuke Ito</a>. All rights reserved. (Last updated: 2020-02-02)</p>
145+
<p>&copy; 2020 <a class="link" href="https://github.com/manicmaniac/ApolloDeveloperKit" target="_blank" rel="external">Ryosuke Ito</a>. All rights reserved. (Last updated: 2020-02-16)</p>
146146
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.11.1</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
147147
</section>
148148
</article>

docs/Extensions/CFNull.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ <h4>Declaration</h4>
142142
</section>
143143
</section>
144144
<section id="footer">
145-
<p>&copy; 2020 <a class="link" href="https://github.com/manicmaniac/ApolloDeveloperKit" target="_blank" rel="external">Ryosuke Ito</a>. All rights reserved. (Last updated: 2020-02-02)</p>
145+
<p>&copy; 2020 <a class="link" href="https://github.com/manicmaniac/ApolloDeveloperKit" target="_blank" rel="external">Ryosuke Ito</a>. All rights reserved. (Last updated: 2020-02-16)</p>
146146
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.11.1</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
147147
</section>
148148
</article>

docs/Extensions/CFNumber.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ <h4>Declaration</h4>
142142
</section>
143143
</section>
144144
<section id="footer">
145-
<p>&copy; 2020 <a class="link" href="https://github.com/manicmaniac/ApolloDeveloperKit" target="_blank" rel="external">Ryosuke Ito</a>. All rights reserved. (Last updated: 2020-02-02)</p>
145+
<p>&copy; 2020 <a class="link" href="https://github.com/manicmaniac/ApolloDeveloperKit" target="_blank" rel="external">Ryosuke Ito</a>. All rights reserved. (Last updated: 2020-02-16)</p>
146146
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.11.1</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
147147
</section>
148148
</article>

docs/Extensions/CFString.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ <h4>Declaration</h4>
142142
</section>
143143
</section>
144144
<section id="footer">
145-
<p>&copy; 2020 <a class="link" href="https://github.com/manicmaniac/ApolloDeveloperKit" target="_blank" rel="external">Ryosuke Ito</a>. All rights reserved. (Last updated: 2020-02-02)</p>
145+
<p>&copy; 2020 <a class="link" href="https://github.com/manicmaniac/ApolloDeveloperKit" target="_blank" rel="external">Ryosuke Ito</a>. All rights reserved. (Last updated: 2020-02-16)</p>
146146
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.11.1</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
147147
</section>
148148
</article>

docs/Extensions/NSArray.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ <h4>Declaration</h4>
142142
</section>
143143
</section>
144144
<section id="footer">
145-
<p>&copy; 2020 <a class="link" href="https://github.com/manicmaniac/ApolloDeveloperKit" target="_blank" rel="external">Ryosuke Ito</a>. All rights reserved. (Last updated: 2020-02-02)</p>
145+
<p>&copy; 2020 <a class="link" href="https://github.com/manicmaniac/ApolloDeveloperKit" target="_blank" rel="external">Ryosuke Ito</a>. All rights reserved. (Last updated: 2020-02-16)</p>
146146
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.11.1</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
147147
</section>
148148
</article>

docs/Extensions/NSDictionary.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ <h4>Declaration</h4>
142142
</section>
143143
</section>
144144
<section id="footer">
145-
<p>&copy; 2020 <a class="link" href="https://github.com/manicmaniac/ApolloDeveloperKit" target="_blank" rel="external">Ryosuke Ito</a>. All rights reserved. (Last updated: 2020-02-02)</p>
145+
<p>&copy; 2020 <a class="link" href="https://github.com/manicmaniac/ApolloDeveloperKit" target="_blank" rel="external">Ryosuke Ito</a>. All rights reserved. (Last updated: 2020-02-16)</p>
146146
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.11.1</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
147147
</section>
148148
</article>

docs/Extensions/NSNull.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ <h4>Declaration</h4>
142142
</section>
143143
</section>
144144
<section id="footer">
145-
<p>&copy; 2020 <a class="link" href="https://github.com/manicmaniac/ApolloDeveloperKit" target="_blank" rel="external">Ryosuke Ito</a>. All rights reserved. (Last updated: 2020-02-02)</p>
145+
<p>&copy; 2020 <a class="link" href="https://github.com/manicmaniac/ApolloDeveloperKit" target="_blank" rel="external">Ryosuke Ito</a>. All rights reserved. (Last updated: 2020-02-16)</p>
146146
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.11.1</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
147147
</section>
148148
</article>

docs/Extensions/NSNumber.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ <h4>Declaration</h4>
142142
</section>
143143
</section>
144144
<section id="footer">
145-
<p>&copy; 2020 <a class="link" href="https://github.com/manicmaniac/ApolloDeveloperKit" target="_blank" rel="external">Ryosuke Ito</a>. All rights reserved. (Last updated: 2020-02-02)</p>
145+
<p>&copy; 2020 <a class="link" href="https://github.com/manicmaniac/ApolloDeveloperKit" target="_blank" rel="external">Ryosuke Ito</a>. All rights reserved. (Last updated: 2020-02-16)</p>
146146
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.11.1</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
147147
</section>
148148
</article>

docs/Extensions/NSString.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ <h4>Declaration</h4>
147147
</section>
148148
</section>
149149
<section id="footer">
150-
<p>&copy; 2020 <a class="link" href="https://github.com/manicmaniac/ApolloDeveloperKit" target="_blank" rel="external">Ryosuke Ito</a>. All rights reserved. (Last updated: 2020-02-02)</p>
150+
<p>&copy; 2020 <a class="link" href="https://github.com/manicmaniac/ApolloDeveloperKit" target="_blank" rel="external">Ryosuke Ito</a>. All rights reserved. (Last updated: 2020-02-16)</p>
151151
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.11.1</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
152152
</section>
153153
</article>

docs/Extensions/Record.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ <h4>Declaration</h4>
136136
</section>
137137
</section>
138138
<section id="footer">
139-
<p>&copy; 2020 <a class="link" href="https://github.com/manicmaniac/ApolloDeveloperKit" target="_blank" rel="external">Ryosuke Ito</a>. All rights reserved. (Last updated: 2020-02-02)</p>
139+
<p>&copy; 2020 <a class="link" href="https://github.com/manicmaniac/ApolloDeveloperKit" target="_blank" rel="external">Ryosuke Ito</a>. All rights reserved. (Last updated: 2020-02-16)</p>
140140
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.11.1</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
141141
</section>
142142
</article>

docs/Extensions/Reference.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ <h4>Declaration</h4>
136136
</section>
137137
</section>
138138
<section id="footer">
139-
<p>&copy; 2020 <a class="link" href="https://github.com/manicmaniac/ApolloDeveloperKit" target="_blank" rel="external">Ryosuke Ito</a>. All rights reserved. (Last updated: 2020-02-02)</p>
139+
<p>&copy; 2020 <a class="link" href="https://github.com/manicmaniac/ApolloDeveloperKit" target="_blank" rel="external">Ryosuke Ito</a>. All rights reserved. (Last updated: 2020-02-16)</p>
140140
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.11.1</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
141141
</section>
142142
</article>

docs/docsets/ApolloDeveloperKit.docset/Contents/Resources/Documents/Classes.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ <h4>Declaration</h4>
209209
</section>
210210
</section>
211211
<section id="footer">
212-
<p>&copy; 2020 <a class="link" href="https://github.com/manicmaniac/ApolloDeveloperKit" target="_blank" rel="external">Ryosuke Ito</a>. All rights reserved. (Last updated: 2020-02-02)</p>
212+
<p>&copy; 2020 <a class="link" href="https://github.com/manicmaniac/ApolloDeveloperKit" target="_blank" rel="external">Ryosuke Ito</a>. All rights reserved. (Last updated: 2020-02-16)</p>
213213
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.11.1</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
214214
</section>
215215
</article>

docs/docsets/ApolloDeveloperKit.docset/Contents/Resources/Documents/Classes/ApolloDebugServer.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,7 @@ <h4>Declaration</h4>
409409
</section>
410410
</section>
411411
<section id="footer">
412-
<p>&copy; 2020 <a class="link" href="https://github.com/manicmaniac/ApolloDeveloperKit" target="_blank" rel="external">Ryosuke Ito</a>. All rights reserved. (Last updated: 2020-02-02)</p>
412+
<p>&copy; 2020 <a class="link" href="https://github.com/manicmaniac/ApolloDeveloperKit" target="_blank" rel="external">Ryosuke Ito</a>. All rights reserved. (Last updated: 2020-02-16)</p>
413413
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.11.1</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
414414
</section>
415415
</article>

docs/docsets/ApolloDeveloperKit.docset/Contents/Resources/Documents/Classes/DebuggableNetworkTransport.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ <h4>Declaration</h4>
256256
</section>
257257
</section>
258258
<section id="footer">
259-
<p>&copy; 2020 <a class="link" href="https://github.com/manicmaniac/ApolloDeveloperKit" target="_blank" rel="external">Ryosuke Ito</a>. All rights reserved. (Last updated: 2020-02-02)</p>
259+
<p>&copy; 2020 <a class="link" href="https://github.com/manicmaniac/ApolloDeveloperKit" target="_blank" rel="external">Ryosuke Ito</a>. All rights reserved. (Last updated: 2020-02-16)</p>
260260
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.11.1</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
261261
</section>
262262
</article>

0 commit comments

Comments
 (0)