Skip to content

Commit

Permalink
Bump to 0.7.4
Browse files Browse the repository at this point in the history
  • Loading branch information
shogo4405 committed Aug 12, 2017
1 parent 37c184e commit 92670f5
Show file tree
Hide file tree
Showing 10 changed files with 18 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .swift-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.0
3.1
4 changes: 2 additions & 2 deletions HaishinKit.podspec
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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

2 changes: 2 additions & 0 deletions HaishinKit.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -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>"; };
Expand Down Expand Up @@ -794,6 +795,7 @@
2945CBB31B4BE66000104112 = {
isa = PBXGroup;
children = (
297A6A1B1F3F3146008C2508 /* lf.podspec */,
29F04FF21F3388B000172706 /* HaishinKit.podspec */,
2981E1301D646E3F00E8F7CA /* Cartfile */,
2927A2991E7ED2D70044AF91 /* LICENSE.md */,
Expand Down
3 changes: 3 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,8 @@ import PackageDescription

let package = Package(
name: "HaishinKit",
dependencies: [
.Package(url: "https://github.com/shogo4405/Logboard.git", majorVersion: 1)
]
)

2 changes: 1 addition & 1 deletion Platforms/iOS/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
2 changes: 1 addition & 1 deletion Platforms/macOS/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
2 changes: 1 addition & 1 deletion Platforms/tvOS/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -68,7 +68,7 @@ end
```
### Carthage
```
github "shogo4405/HaishinKit.swift" ~> 0.7.3
github "shogo4405/HaishinKit.swift" ~> 0.7.4
```

## License
Expand Down
3 changes: 3 additions & 0 deletions Sources/RTMP/RTMPConnection.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 2 additions & 3 deletions lf.podspec
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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

0 comments on commit 92670f5

Please sign in to comment.