Skip to content
This repository was archived by the owner on Feb 5, 2025. It is now read-only.

Commit 48c4e1d

Browse files
authored
Merge pull request #149 from wordpress-mobile/release/1.10.1
Merge Release/1.10.1 into Master
2 parents 332121f + c97c3da commit 48c4e1d

File tree

7 files changed

+40
-35
lines changed

7 files changed

+40
-35
lines changed

.circleci/config.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
version: 2.1
22

33
orbs:
4-
# This uses the iOS Orb located at https://github.com/wordpress-mobile/circleci-orbs
5-
ios: wordpress-mobile/ios@0.0.35
4+
# Using 1.0 of our Orbs means it will use the latest 1.0.x version from https://github.com/wordpress-mobile/circleci-orbs
5+
ios: wordpress-mobile/ios@1.0
66

77
workflows:
88
test_and_validate:
@@ -14,15 +14,18 @@ workflows:
1414
scheme: WordPressAuthenticator
1515
device: iPhone 11
1616
ios-version: "13.0"
17+
bundle-install: true
18+
pod-install: true
1719
- ios/validate-podspec:
1820
name: Validate Podspec
1921
xcode-version: "11.0"
2022
podspec-path: WordPressAuthenticator.podspec
21-
update-specs-repo: true
23+
bundle-install: true
2224
- ios/publish-podspec:
2325
name: Publish to Trunk
2426
xcode-version: "11.0"
2527
podspec-path: WordPressAuthenticator.podspec
28+
bundle-install: true
2629
post-to-slack: true
2730
filters:
2831
tags:

Gemfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
source 'https://rubygems.org' do
2-
gem 'cocoapods', '~>1.7.0'
3-
gem 'cocoapods-repo-update'
2+
gem 'cocoapods', '~> 1.8.0'
43
end

Gemfile.lock

Lines changed: 16 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,21 @@ GEM
77
minitest (~> 5.1)
88
thread_safe (~> 0.3, >= 0.3.4)
99
tzinfo (~> 1.1)
10+
algoliasearch (1.27.1)
11+
httpclient (~> 2.8, >= 2.8.3)
12+
json (>= 1.5.1)
1013
atomos (0.1.3)
1114
claide (1.0.3)
12-
cocoapods (1.7.5)
15+
cocoapods (1.8.3)
1316
activesupport (>= 4.0.2, < 5)
1417
claide (>= 1.0.2, < 2.0)
15-
cocoapods-core (= 1.7.5)
18+
cocoapods-core (= 1.8.3)
1619
cocoapods-deintegrate (>= 1.0.3, < 2.0)
1720
cocoapods-downloader (>= 1.2.2, < 2.0)
1821
cocoapods-plugins (>= 1.0.0, < 2.0)
1922
cocoapods-search (>= 1.0.0, < 2.0)
2023
cocoapods-stats (>= 1.0.0, < 2.0)
21-
cocoapods-trunk (>= 1.3.1, < 2.0)
24+
cocoapods-trunk (>= 1.4.0, < 2.0)
2225
cocoapods-try (>= 1.1.0, < 2.0)
2326
colored2 (~> 3.1)
2427
escape (~> 0.0.4)
@@ -27,20 +30,20 @@ GEM
2730
molinillo (~> 0.6.6)
2831
nap (~> 1.0)
2932
ruby-macho (~> 1.4)
30-
xcodeproj (>= 1.10.0, < 2.0)
31-
cocoapods-core (1.7.5)
33+
xcodeproj (>= 1.11.1, < 2.0)
34+
cocoapods-core (1.8.3)
3235
activesupport (>= 4.0.2, < 6)
36+
algoliasearch (~> 1.0)
37+
concurrent-ruby (~> 1.1)
3338
fuzzy_match (~> 2.0.4)
3439
nap (~> 1.0)
3540
cocoapods-deintegrate (1.0.4)
3641
cocoapods-downloader (1.2.2)
3742
cocoapods-plugins (1.0.0)
3843
nap
39-
cocoapods-repo-update (0.0.4)
40-
cocoapods (~> 1.0, >= 1.3.0)
4144
cocoapods-search (1.0.0)
4245
cocoapods-stats (1.1.0)
43-
cocoapods-trunk (1.4.0)
46+
cocoapods-trunk (1.4.1)
4447
nap (>= 0.8, < 2.0)
4548
netrc (~> 0.11)
4649
cocoapods-try (1.1.0)
@@ -50,9 +53,11 @@ GEM
5053
fourflusher (2.3.1)
5154
fuzzy_match (2.0.4)
5255
gh_inspector (1.1.3)
56+
httpclient (2.8.3)
5357
i18n (0.9.5)
5458
concurrent-ruby (~> 1.0)
55-
minitest (5.11.3)
59+
json (2.2.0)
60+
minitest (5.12.2)
5661
molinillo (0.6.6)
5762
nanaimo (0.2.6)
5863
nap (1.1.0)
@@ -72,8 +77,7 @@ PLATFORMS
7277
ruby
7378

7479
DEPENDENCIES
75-
cocoapods (~> 1.7.0)!
76-
cocoapods-repo-update!
80+
cocoapods (~> 1.8.0)!
7781

7882
BUNDLED WITH
79-
1.17.2
83+
2.0.2

Podfile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,16 @@
1-
source 'https://github.com/CocoaPods/specs.git'
1+
source 'https://cdn.cocoapods.org/'
22

33
inhibit_all_warnings!
44
use_frameworks!
55

66
platform :ios, '11.0'
7-
plugin 'cocoapods-repo-update'
87

98
def wordpress_authenticator_pods
109
## Automattic libraries
1110
## ====================
1211
##
1312
pod 'Gridicons', '~> 0.15'
14-
pod 'WordPressUI', '~> 1.3'
13+
pod 'WordPressUI', '~> 1.4-beta.1'
1514
pod 'WordPressKit', '~> 4.5.1'
1615
pod 'WordPressShared', '~> 1.8'
1716

Podfile.lock

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ PODS:
2020
- GoogleToolboxForMac/Defines (= 2.2.1)
2121
- "GoogleToolboxForMac/NSString+URLArguments (= 2.2.1)"
2222
- "GoogleToolboxForMac/NSString+URLArguments (2.2.1)"
23-
- Gridicons (0.18)
23+
- Gridicons (0.19)
2424
- GTMSessionFetcher/Core (1.2.2)
2525
- lottie-ios (2.5.2)
2626
- NSObject-SafeExpectations (0.0.3)
@@ -51,10 +51,10 @@ PODS:
5151
- UIDeviceIdentifier (~> 1.1.4)
5252
- WordPressShared (~> 1.8.0)
5353
- wpxmlrpc (= 0.8.4)
54-
- WordPressShared (1.8.2):
54+
- WordPressShared (1.8.7):
5555
- CocoaLumberjack (~> 3.4)
5656
- FormatterKit/TimeIntervalFormatter (= 1.8.2)
57-
- WordPressUI (1.3.3)
57+
- WordPressUI (1.4-beta.1)
5858
- wpxmlrpc (0.8.4)
5959

6060
DEPENDENCIES:
@@ -73,10 +73,10 @@ DEPENDENCIES:
7373
- SVProgressHUD (= 2.2.5)
7474
- WordPressKit (~> 4.5.1)
7575
- WordPressShared (~> 1.8)
76-
- WordPressUI (~> 1.3)
76+
- WordPressUI (~> 1.4-beta.1)
7777

7878
SPEC REPOS:
79-
https://github.com/cocoapods/specs.git:
79+
trunk:
8080
- 1PasswordExtension
8181
- Alamofire
8282
- CocoaLumberjack
@@ -107,7 +107,7 @@ SPEC CHECKSUMS:
107107
FormatterKit: 4b8f29acc9b872d5d12a63efb560661e8f2e1b98
108108
GoogleSignIn: 7ff245e1a7b26d379099d3243a562f5747e23d39
109109
GoogleToolboxForMac: b3553629623a3b1bff17f555e736cd5a6d95ad55
110-
Gridicons: 04261236382e9c62c62c9a104f2f532c1bdf6a78
110+
Gridicons: dc92efbe5fd60111d2e8ea051d84a60cca552abc
111111
GTMSessionFetcher: 61bb0f61a4cb560030f1222021178008a5727a23
112112
lottie-ios: 3fef45d3fabe63e3c7c2eb603dd64ddfffc73062
113113
NSObject-SafeExpectations: b989b68a8a9b7b9f2b264a8b52ba9d7aab8f3129
@@ -118,10 +118,10 @@ SPEC CHECKSUMS:
118118
SVProgressHUD: 1428aafac632c1f86f62aa4243ec12008d7a51d6
119119
UIDeviceIdentifier: 8f8a24b257a4d978c8d40ad1e7355b944ffbfa8c
120120
WordPressKit: c35230114bbd380d63250b6d9a43337c29266c9b
121-
WordPressShared: 34f7a1386d28d7e4650c1a225c554ee024401ca3
122-
WordPressUI: 0ea6df25bf6e63f0619376fa23870177cb37646f
121+
WordPressShared: 09cf184caa614835f5811e8609227165201e6d3e
122+
WordPressUI: 35b144885c8e5817ba6874b68accc200bda61ee1
123123
wpxmlrpc: 6ba55c773cfa27083ae4a2173e69b19f46da98e2
124124

125-
PODFILE CHECKSUM: 66289be542d590608e356c5ec95a46fd253a65ce
125+
PODFILE CHECKSUM: 831117be8f1a447aaa2277d2b421a8e64fe6f02c
126126

127-
COCOAPODS: 1.7.5
127+
COCOAPODS: 1.8.3

WordPressAuthenticator.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "WordPressAuthenticator"
3-
s.version = "1.10.0"
3+
s.version = "1.10.1"
44
s.summary = "WordPressAuthenticator implements an easy and elegant way to authenticate your WordPress Apps."
55

66
s.description = <<-DESC
@@ -38,7 +38,7 @@ Pod::Spec.new do |s|
3838

3939
s.dependency 'Gridicons', '~> 0.15'
4040
s.dependency 'GoogleSignIn', '~> 4.4'
41-
s.dependency 'WordPressUI', '~> 1.3'
41+
s.dependency 'WordPressUI', '~> 1.4-beta.1'
4242
s.dependency 'WordPressKit', '~> 4.5.1'
4343
s.dependency 'WordPressShared', '~> 1.8'
4444
end

WordPressAuthenticator/Authenticator/WordPressAuthenticatorStyles.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ public struct WordPressAuthenticatorStyle {
99
///
1010
public let primaryNormalBackgroundColor: UIColor
1111

12-
public let primaryNormalBorderColor: UIColor
12+
public let primaryNormalBorderColor: UIColor?
1313

1414
/// Style: Primary + Highlighted State
1515
///
1616
public let primaryHighlightBackgroundColor: UIColor
1717

18-
public let primaryHighlightBorderColor: UIColor
18+
public let primaryHighlightBorderColor: UIColor?
1919

2020
/// Style: Secondary
2121
///
@@ -79,7 +79,7 @@ public struct WordPressAuthenticatorStyle {
7979

8080
/// Designated initializer
8181
///
82-
public init(primaryNormalBackgroundColor: UIColor, primaryNormalBorderColor: UIColor, primaryHighlightBackgroundColor: UIColor, primaryHighlightBorderColor: UIColor, secondaryNormalBackgroundColor: UIColor, secondaryNormalBorderColor: UIColor, secondaryHighlightBackgroundColor: UIColor, secondaryHighlightBorderColor: UIColor, disabledBackgroundColor: UIColor, disabledBorderColor: UIColor, primaryTitleColor: UIColor, secondaryTitleColor: UIColor, disabledTitleColor: UIColor, textButtonColor: UIColor, textButtonHighlightColor: UIColor, instructionColor: UIColor, subheadlineColor: UIColor, placeholderColor: UIColor, viewControllerBackgroundColor: UIColor, textFieldBackgroundColor: UIColor, navBarImage: UIImage, navBarBadgeColor: UIColor, prologueBackgroundColor: UIColor = WPStyleGuide.wordPressBlue(), prologueTitleColor: UIColor = .white, statusBarStyle: UIStatusBarStyle = .lightContent) {
82+
public init(primaryNormalBackgroundColor: UIColor, primaryNormalBorderColor: UIColor?, primaryHighlightBackgroundColor: UIColor, primaryHighlightBorderColor: UIColor?, secondaryNormalBackgroundColor: UIColor, secondaryNormalBorderColor: UIColor, secondaryHighlightBackgroundColor: UIColor, secondaryHighlightBorderColor: UIColor, disabledBackgroundColor: UIColor, disabledBorderColor: UIColor, primaryTitleColor: UIColor, secondaryTitleColor: UIColor, disabledTitleColor: UIColor, textButtonColor: UIColor, textButtonHighlightColor: UIColor, instructionColor: UIColor, subheadlineColor: UIColor, placeholderColor: UIColor, viewControllerBackgroundColor: UIColor, textFieldBackgroundColor: UIColor, navBarImage: UIImage, navBarBadgeColor: UIColor, prologueBackgroundColor: UIColor = WPStyleGuide.wordPressBlue(), prologueTitleColor: UIColor = .white, statusBarStyle: UIStatusBarStyle = .lightContent) {
8383
self.primaryNormalBackgroundColor = primaryNormalBackgroundColor
8484
self.primaryNormalBorderColor = primaryNormalBorderColor
8585
self.primaryHighlightBackgroundColor = primaryHighlightBackgroundColor

0 commit comments

Comments
 (0)