Skip to content

Commit 4ccf9a7

Browse files
Update SwiftProtobuf dependency (#17)
1 parent f4d4c6b commit 4ccf9a7

13 files changed

+268
-202
lines changed

Bender.xcodeproj/project.pbxproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -70,12 +70,12 @@
7070
8FAB77271ECC86170050AB16 /* tensor.pb.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8FAB771F1ECC86170050AB16 /* tensor.pb.swift */; };
7171
8FAB77281ECC86170050AB16 /* types.pb.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8FAB77201ECC86170050AB16 /* types.pb.swift */; };
7272
8FAB77291ECC86170050AB16 /* versions.pb.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8FAB77211ECC86170050AB16 /* versions.pb.swift */; };
73-
8FAB772C1ECC87E20050AB16 /* SwiftProtobuf.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8FAB772B1ECC87E20050AB16 /* SwiftProtobuf.framework */; };
7473
8FAB772E1ECC8D6E0050AB16 /* TFGraphLoader.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8FAB772D1ECC8D6E0050AB16 /* TFGraphLoader.swift */; };
7574
8FAB77391ECC993A0050AB16 /* Graph.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8FAB77381ECC993A0050AB16 /* Graph.swift */; };
7675
8FAB773D1ECC9B0F0050AB16 /* Node.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8FAB773C1ECC9B0F0050AB16 /* Node.swift */; };
7776
8FAD35031ED47A97004B69DA /* TFDeleteSubgraph.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8FAD35021ED47A97004B69DA /* TFDeleteSubgraph.swift */; };
7877
8FAD35091ED4C7B3004B69DA /* TFConvOptimizer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8FAD35081ED4C7B3004B69DA /* TFConvOptimizer.swift */; };
78+
8FC2B3A51EE5D9B80038E582 /* SwiftProtobuf.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8FAB772B1ECC87E20050AB16 /* SwiftProtobuf.framework */; };
7979
8FC8F7AF1ED35396004DA113 /* TFDenseSubstitution.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8FC8F7AE1ED35396004DA113 /* TFDenseSubstitution.swift */; };
8080
8FC8F7B41ED38164004DA113 /* TFDeleteOptimizers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8FC8F7B31ED38164004DA113 /* TFDeleteOptimizers.swift */; };
8181
8FFF4AD71EDEFDB600141E9D /* Shape.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8FFF4AD61EDEFDB600141E9D /* Shape.swift */; };
@@ -163,7 +163,7 @@
163163
isa = PBXFrameworksBuildPhase;
164164
buildActionMask = 2147483647;
165165
files = (
166-
8FAB772C1ECC87E20050AB16 /* SwiftProtobuf.framework in Frameworks */,
166+
8FC2B3A51EE5D9B80038E582 /* SwiftProtobuf.framework in Frameworks */,
167167
);
168168
runOnlyForDeploymentPostprocessing = 0;
169169
};

Cartfile.private

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
github "apple/swift-protobuf" "0.9.902"
1+
github "apple/swift-protobuf" "master"

Cartfile.resolved

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
github "apple/swift-protobuf" "0.9.902"
1+
github "apple/swift-protobuf" "b8b72219612a7caf8df97f32960996fb14163d84"

Bender.podspec MetalBender.podspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Pod::Spec.new do |s|
2-
s.name = "Metal-Bender"
2+
s.name = "MetalBender"
33
s.version = "0.1.0"
44
s.summary = "Bender is an abstraction layer over MetalPerformanceShaders useful for working with neural networks."
55
s.homepage = "https://github.com/xmartlabs/Bender"
@@ -10,5 +10,5 @@ Pod::Spec.new do |s|
1010
s.ios.deployment_target = '10.0'
1111
s.requires_arc = true
1212
s.ios.source_files = 'Sources/**/*.{swift,metal}'
13-
s.dependency 'SwiftProtobuf', '0.9.902'
13+
s.dependency 'SwiftProtobuf', '0.9.903'
1414
end

README.md

+2-8
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<img src="https://img.shields.io/badge/platform-iOS-blue.svg?style=flat" alt="Platform iOS" />
66
<a href="https://developer.apple.com/swift"><img src="https://img.shields.io/badge/swift3-compatible-4BC51D.svg?style=flat" alt="Swift 3 compatible" /></a>
77
<!-- <a href="https://github.com/Carthage/Carthage"><img src="https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat" alt="Carthage compatible" /></a> -->
8-
<a href="https://cocoapods.org/pods/Metal-Bender"><img src="https://img.shields.io/cocoapods/v/Metal-Bender.svg" alt="CocoaPods compatible" /></a>
8+
<a href="https://cocoapods.org/pods/MetalBender"><img src="https://img.shields.io/cocoapods/v/MetalBender.svg" alt="CocoaPods compatible" /></a>
99
<a href="https://raw.githubusercontent.com/xmartlabs/Bender/master/LICENSE"><img src="http://img.shields.io/badge/license-MIT-blue.svg?style=flat" alt="License: MIT" /></a>
1010
</p>
1111

@@ -119,13 +119,7 @@ Follow these 3 steps to run Example project: Clone Bender repository, open Bende
119119
To install Bender, simply add the following line to your Podfile:
120120

121121
```ruby
122-
pod 'Metal-Bender', :git => 'https://github.com/xmartlabs/Bender.git'
123-
```
124-
125-
If Cocoapods has problems finding SwiftProtobuf version 0.9.902 then also add the following line to your Podfile:
126-
127-
```ruby
128-
pod 'SwiftProtobuf', git: 'https://github.com/apple/swift-protobuf.git', :tag => '0.9.902'
122+
pod 'MetalBender', :git => 'https://github.com/xmartlabs/Bender.git'
129123
```
130124

131125
> Remember that Bender compiles for iOS 10. So you must add `platform :ios, '10.0'` to your Podfile

0 commit comments

Comments
 (0)