File tree Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -48,6 +48,12 @@ _None._
48
48
49
49
_ None._
50
50
51
+ ## 8.5.2
52
+
53
+ ### Bug Fixes
54
+
55
+ - Exclude dot blog subdomains from freeAndPaid domain query [ #627 ]
56
+
51
57
## 8.5.1
52
58
53
59
### Bug Fixes
Original file line number Diff line number Diff line change 2
2
3
3
Pod ::Spec . new do |s |
4
4
s . name = 'WordPressKit'
5
- s . version = '8.5.1 '
5
+ s . version = '8.5.2 '
6
6
7
7
s . summary = 'WordPressKit offers a clean and simple WordPress.com and WordPress.org API.'
8
8
s . description = <<-DESC
Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ public class DomainsServiceRemote: ServiceRemoteWordPressComREST {
79
79
case onlyWordPressDotCom
80
80
case wordPressDotComAndDotBlogSubdomains
81
81
82
- /// Includes free dotcom and dotblog sudomains and paid domains.
82
+ /// Includes free dotcom sudomains and paid domains.
83
83
case freeAndPaid
84
84
85
85
case allowlistedTopLevelDomains( [ String ] )
@@ -99,7 +99,7 @@ public class DomainsServiceRemote: ServiceRemoteWordPressComREST {
99
99
" only_wordpressdotcom " : true as AnyObject ,
100
100
" include_wordpressdotcom " : true as AnyObject ]
101
101
case . freeAndPaid:
102
- return [ " include_dotblogsubdomain " : true as AnyObject ,
102
+ return [ " include_dotblogsubdomain " : false as AnyObject ,
103
103
" include_wordpressdotcom " : true as AnyObject ,
104
104
" vendor " : " mobile " as AnyObject ]
105
105
case . allowlistedTopLevelDomains( let allowlistedTLDs) :
You can’t perform that action at this time.
0 commit comments