Bump to 0.7.4

This commit is contained in:
shogo4405 2017-08-12 22:39:05 +09:00
parent 37c184e894
commit 92670f520d
10 changed files with 18 additions and 11 deletions

View File

@ -1 +1 @@
3.0
3.1

View File

@ -1,7 +1,7 @@
Pod::Spec.new do |s|
s.name = "HaishinKit"
s.version = "0.7.3"
s.version = "0.7.4"
s.summary = "Camera and Microphone streaming library via RTMP, HLS for iOS, macOS, tvOS."
s.description = <<-DESC
@ -25,7 +25,7 @@ Pod::Spec.new do |s|
s.tvos.source_files = "Platforms/tvOS/*.{h,swift}"
s.source_files = "Sources/**/*.swift"
s.dependency 'Logboard', '~> 1.0.0'
s.dependency 'Logboard', '~> 1.0.1'
end

View File

@ -511,6 +511,7 @@
29798E511CE5DF1900F5CBD0 /* MP4Reader.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = MP4Reader.swift; path = Sources/ISO/MP4Reader.swift; sourceTree = SOURCE_ROOT; };
29798E591CE60E5300F5CBD0 /* Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
29798E5D1CE60E5300F5CBD0 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
297A6A1B1F3F3146008C2508 /* lf.podspec */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = lf.podspec; sourceTree = "<group>"; };
2981E1301D646E3F00E8F7CA /* Cartfile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Cartfile; sourceTree = "<group>"; };
298BCF321DD4C44A007FF86A /* AnyUtil.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = AnyUtil.swift; path = Sources/Util/AnyUtil.swift; sourceTree = SOURCE_ROOT; };
2992D1521ED04A1B008D9DC1 /* VideoIOComponent+Extension.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = "VideoIOComponent+Extension.swift"; path = "Platforms/macOS/VideoIOComponent+Extension.swift"; sourceTree = "<group>"; };
@ -794,6 +795,7 @@
2945CBB31B4BE66000104112 = {
isa = PBXGroup;
children = (
297A6A1B1F3F3146008C2508 /* lf.podspec */,
29F04FF21F3388B000172706 /* HaishinKit.podspec */,
2981E1301D646E3F00E8F7CA /* Cartfile */,
2927A2991E7ED2D70044AF91 /* LICENSE.md */,

View File

@ -2,5 +2,8 @@ import PackageDescription
let package = Package(
name: "HaishinKit",
dependencies: [
.Package(url: "https://github.com/shogo4405/Logboard.git", majorVersion: 1)
]
)

View File

@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>0.7.2</string>
<string>0.7.4</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>

View File

@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>0.7.2</string>
<string>0.7.4</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>

View File

@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>0.7.2</string>
<string>0.7.4</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>

View File

@ -58,7 +58,7 @@ source 'https://github.com/CocoaPods/Specs.git'
use_frameworks!
def import_pods
pod 'HaishinKit', '~> 0.7.3'
pod 'HaishinKit', '~> 0.7.4'
end
target 'Your Target' do
@ -68,7 +68,7 @@ end
```
### Carthage
```
github "shogo4405/HaishinKit.swift" ~> 0.7.3
github "shogo4405/HaishinKit.swift" ~> 0.7.4
```
## License

View File

@ -358,6 +358,9 @@ open class RTMPConnection: EventDispatcher {
break
}
case Code.connectClosed.rawValue:
if let description:String = data["description"] as? String {
logger.warn(description)
}
close(isDisconnected: true)
default:
break

View File

@ -1,7 +1,7 @@
Pod::Spec.new do |s|
s.name = "lf"
s.version = "0.7.3"
s.version = "0.7.4"
s.summary = "Camera and Microphone streaming library via RTMP, HLS for iOS, macOS, tvOS."
s.description = <<-DESC
@ -25,7 +25,6 @@ Pod::Spec.new do |s|
s.tvos.source_files = "Platforms/tvOS/*.{h,swift}"
s.source_files = "Sources/**/*.swift"
s.dependency 'XCGLogger', '~> 5.0.0'
s.dependency 'Logboard', '~> 1.0.1'
end