Skip to content

Commit

Permalink
Merge pull request #215 from kyleve/kve/fix-imports
Browse files Browse the repository at this point in the history
Fix imports
  • Loading branch information
kyleve authored Oct 2, 2020
2 parents 91a1877 + 713c524 commit f4dd2c0
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 9 deletions.
2 changes: 1 addition & 1 deletion BlueprintUILists.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

Pod::Spec.new do |s|
s.name = 'BlueprintUILists'
s.version = '0.10.0'
s.version = '0.10.1'
s.summary = 'Declarative list views for iOS apps that deploy back to iOS 11.0.'
s.homepage = 'https://github.com/kyleve/Listable'
s.license = 'Apache License, Version 2.0'
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@

# Past Releases

# [0.10.1] - 2020-10-01

- [Fixed import](https://github.com/kyleve/Listable/pull/215) of Swift bridging header, so Cocoapods can build with or without `use_frameworks!`.

# [0.10.0] - 2020-09-24

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion ListableUI.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

Pod::Spec.new do |s|
s.name = 'ListableUI'
s.version = '0.10.0'
s.version = '0.10.1'
s.summary = 'Declarative list views for iOS apps that deploy back to iOS 11.0.'
s.homepage = 'https://github.com/kyleve/Listable'
s.license = 'Apache License, Version 2.0'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,11 @@
@import Foundation;
@import UIKit;

#import <ListableUI/ListableUI-Swift.h>
#if __has_include (<ListableUI/ListableUI-Swift.h>)
#import <ListableUI/ListableUI-Swift.h>
#elif __has_include ("ListableUI-Swift.h")
#import "ListableUI-Swift.h"
#endif


@interface __LST_SetupKeyboardObserverOnAppStartup : NSObject
Expand Down
12 changes: 6 additions & 6 deletions Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@ PODS:
- BlueprintUI (0.12.2)
- BlueprintUICommonControls (0.12.2):
- BlueprintUI
- BlueprintUILists (0.10.0):
- BlueprintUILists (0.10.1):
- BlueprintUI
- ListableUI
- BlueprintUILists/Tests (0.10.0):
- BlueprintUILists/Tests (0.10.1):
- BlueprintUI
- ListableUI
- EnglishDictionary (1.0.0.LOCAL)
- ListableUI (0.10.0)
- ListableUI/Tests (0.10.0):
- ListableUI (0.10.1)
- ListableUI/Tests (0.10.1):
- EnglishDictionary
- Snapshot
- Snapshot (1.0.0.LOCAL)
Expand Down Expand Up @@ -45,9 +45,9 @@ EXTERNAL SOURCES:
SPEC CHECKSUMS:
BlueprintUI: 8b1c1cfd7ed73444ebfb66b54ad539cec6b600d9
BlueprintUICommonControls: 31bfe6642633a1fde476bc566c565f5473343427
BlueprintUILists: 77db62309844a70e5bfa33614404dd061c8921e7
BlueprintUILists: bdb3f05677910ff21b6249826f7f40234ce68fcc
EnglishDictionary: f03968b9382ddc5c8dd63535efbf783c6cd45f1c
ListableUI: db66bc8f100ac2b66af0a07504db4d81585781e9
ListableUI: 3161a831bd644b1dbb3bc981902aca0b55ad7b7d
Snapshot: cda3414db426919d09f775434b36289c8e864183

PODFILE CHECKSUM: c1209f66d9213201c70fd26a2f0907a6e29e8cbe
Expand Down

0 comments on commit f4dd2c0

Please sign in to comment.