Skip to content

Commit

Permalink
CombineExt 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
freak4pc committed May 17, 2020
1 parent 31e611e commit 6664678
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 1 deletion.
2 changes: 1 addition & 1 deletion CombineExt.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "CombineExt"
s.version = "1.1.0"
s.version = "1.2.0"
s.summary = "Combine operators and helpers not provided by Apple, and inspired by other Reactive Frameworks"
s.description = <<-DESC
A collection of operators for Combine adding capabilities and utilities not provided by Apple,
Expand Down
2 changes: 2 additions & 0 deletions CombineExt.xcodeproj/project.pbxproj
Expand Up @@ -88,6 +88,7 @@
78002BB6241E915E0018AA28 /* CurrentValueRelay.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CurrentValueRelay.swift; sourceTree = "<group>"; };
78002BB8241E91D70018AA28 /* PassthroughRelay.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PassthroughRelay.swift; sourceTree = "<group>"; };
78002BBA241E97350018AA28 /* CurrentValueRelayTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CurrentValueRelayTests.swift; sourceTree = "<group>"; };
78330686247180A000E5E1C8 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = Sources/Info.plist; sourceTree = "<group>"; };
788CD8F4242F9DFB0015B3C7 /* AmbTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AmbTests.swift; sourceTree = "<group>"; };
788CD8FA2431228C0015B3C7 /* Amb.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Amb.swift; sourceTree = "<group>"; };
78988A1D241EAFDD00F3A4AF /* PassthroughRelayTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PassthroughRelayTests.swift; sourceTree = "<group>"; };
Expand Down Expand Up @@ -242,6 +243,7 @@
isa = PBXGroup;
children = (
OBJ_6 /* Package.swift */,
78330686247180A000E5E1C8 /* Info.plist */,
OBJ_7 /* Sources */,
OBJ_11 /* Tests */,
OBJ_13 /* Products */,
Expand Down
26 changes: 26 additions & 0 deletions Sources/Info.plist
@@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>$(PRODUCT_NAME)</string>
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>5.1.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
<string></string>
</dict>
</plist>

0 comments on commit 6664678

Please sign in to comment.