Skip to content
This repository has been archived by the owner on Aug 26, 2021. It is now read-only.

Commit

Permalink
Merge pull request #268 from vimeo/release/version-3-3-1
Browse files Browse the repository at this point in the history
Release version 3.3.1
  • Loading branch information
jasonhawkins authored Oct 9, 2018
2 parents 8443722 + 3746609 commit d5b3190
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 11 deletions.
4 changes: 2 additions & 2 deletions Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ PODS:
- OHHTTPStubs/Swift (6.0.0):
- OHHTTPStubs/Default
- SwiftLint (0.25.1)
- VimeoNetworking (3.1.0):
- VimeoNetworking (3.3.1):
- AFNetworking (= 3.1.0)

DEPENDENCIES:
Expand All @@ -51,7 +51,7 @@ SPEC CHECKSUMS:
AFNetworking: 5e0e199f73d8626b11e79750991f5d173d1f8b67
OHHTTPStubs: 752f9b11fd810a15162d50f11c06ff94f8e012eb
SwiftLint: ce933681be10c3266e82576dad676fa815a602e9
VimeoNetworking: a826838fc6998122962592c3d309579ad13ab5cd
VimeoNetworking: 6c51314fe2ba1c5c0eb23a638daf46af8aa9df30

PODFILE CHECKSUM: 15308d7273e1bf844b2ad8c456612b686e9c5b45

Expand Down
7 changes: 4 additions & 3 deletions Pods/Local Podspecs/VimeoNetworking.podspec.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Pods/Manifest.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Pods/Target Support Files/VimeoNetworking-iOS/Info.plist

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Pods/Target Support Files/VimeoNetworking-tvOS/Info.plist

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion VimeoNetworking.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|

s.name = "VimeoNetworking"
s.version = "3.3.0"
s.version = "3.3.1"
s.summary = "A library for interacting with the Vimeo API."
s.description = "An iOS/tvOS library for interacting with the Vimeo API."
s.homepage = "https://github.com/vimeo/VimeoNetworking"
Expand Down
1 change: 1 addition & 0 deletions VimeoNetworking/Sources/Models/VIMPrivacy.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,5 +43,6 @@ extern NSString * __nonnull VIMPrivacy_Disabled;
@property (nonatomic, copy, nullable) NSString *comments;
@property (nonatomic, copy, nullable) NSString *embed;
@property (nonatomic, copy, nullable) NSString *view;
@property (nonatomic, copy, nullable) NSString *bypassToken;

@end
3 changes: 2 additions & 1 deletion VimeoNetworking/Sources/Models/VIMPrivacy.m
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ @implementation VIMPrivacy
- (NSDictionary *)getObjectMapping
{
return @{@"add": @"canAdd",
@"download" : @"canDownload"};
@"download" : @"canDownload",
@"_bypass_token" : @"bypassToken"};
}

@end

0 comments on commit d5b3190

Please sign in to comment.