Skip to content

Commit 29b859a

Browse files
committed
Bump version to 3.1.0
1 parent 40af33d commit 29b859a

6 files changed

Lines changed: 22 additions & 11 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
66

77
## [Unreleased]
88

9-
## [3.0.0] - 2010-12-20
9+
## [3.1.0] - 2020-09-25
10+
11+
- Adjust project to Xcode 12 and tvOS 14
12+
13+
## [3.0.0] - 2019-12-20
1014

1115
- Migrate to Swift 5.0
1216

Example/Objc/Example.xcodeproj/project.pbxproj

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,13 +185,20 @@
185185
inputFileListPaths = (
186186
"${PODS_ROOT}/Target Support Files/Pods-Example/Pods-Example-frameworks-${CONFIGURATION}-input-files.xcfilelist",
187187
);
188+
inputPaths = (
189+
"${SRCROOT}/Pods/Target Support Files/Pods-Example/Pods-Example-frameworks.sh",
190+
"${BUILT_PRODUCTS_DIR}/FocusTvButton/FocusTvButton.framework",
191+
);
188192
name = "[CP] Embed Pods Frameworks";
189193
outputFileListPaths = (
190194
"${PODS_ROOT}/Target Support Files/Pods-Example/Pods-Example-frameworks-${CONFIGURATION}-output-files.xcfilelist",
191195
);
196+
outputPaths = (
197+
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/FocusTvButton.framework",
198+
);
192199
runOnlyForDeploymentPostprocessing = 0;
193200
shellPath = /bin/sh;
194-
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Example/Pods-Example-frameworks.sh\"\n";
201+
shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Example/Pods-Example-frameworks.sh\"\n";
195202
showEnvVarsInLog = 0;
196203
};
197204
/* End PBXShellScriptBuildPhase section */

Example/Objc/Podfile.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
PODS:
2-
- FocusTvButton (3.0.0)
2+
- FocusTvButton (3.1.0)
33

44
DEPENDENCIES:
55
- FocusTvButton (from `../..`)
@@ -9,8 +9,8 @@ EXTERNAL SOURCES:
99
:path: "../.."
1010

1111
SPEC CHECKSUMS:
12-
FocusTvButton: 4a332759cfc33d474a5e33a36843039f76438c28
12+
FocusTvButton: 5fd61e73d4a0aca56204fc44e50906da4a2d8196
1313

1414
PODFILE CHECKSUM: 0c22000b3753dca5ac3e837e8ca1cdeaf168a8fd
1515

16-
COCOAPODS: 1.9.3
16+
COCOAPODS: 1.5.3

Example/Swift/Podfile.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
PODS:
2-
- FocusTvButton (3.0.0)
2+
- FocusTvButton (3.1.0)
33

44
DEPENDENCIES:
55
- FocusTvButton (from `../..`)
@@ -9,8 +9,8 @@ EXTERNAL SOURCES:
99
:path: "../.."
1010

1111
SPEC CHECKSUMS:
12-
FocusTvButton: 322ee78a9bf6e9d3f6751be348fbdf0cc2a47958
12+
FocusTvButton: 5fd61e73d4a0aca56204fc44e50906da4a2d8196
1313

14-
PODFILE CHECKSUM: 4c1389cd6e79dc352d6b11a17fc297e6917d38dc
14+
PODFILE CHECKSUM: 0c22000b3753dca5ac3e837e8ca1cdeaf168a8fd
1515

1616
COCOAPODS: 1.5.3

FocusTvButton.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |s|
22
s.name = 'FocusTvButton'
33
s.authors = { 'David Cordero' => 'dcorderoramirez@gmail.com'}
4-
s.version = '3.0.0'
4+
s.version = '3.1.0'
55
s.license = 'MIT'
66
s.summary = 'Light wrapper of UIButton that allow extra customization for tvOS'
77
s.homepage = 'https://github.com/dcordero/FocusTvButton'

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ platform :tvos, '9.0'
9797
use_frameworks!
9898

9999
target '<Your Target Name>' do
100-
pod 'FocusTvButton', '~> 3.0.0'
100+
pod 'FocusTvButton', '~> 3.1.0'
101101
end
102102
```
103103

@@ -121,7 +121,7 @@ $ brew install carthage
121121
To integrate FocusTvButton into your Xcode project using Carthage, specify it in your Cartfile:
122122

123123
```
124-
github "dcordero/FocusTvButton" ~> 3.0.0
124+
github "dcordero/FocusTvButton" ~> 3.1.0
125125
```
126126

127127
Run carthage update to build the framework and drag the built FocusTvButton.framework into your Xcode project.

0 commit comments

Comments
 (0)