From b7c2297cba3ffc86af8ac26c3e3e10eda80b4708 Mon Sep 17 00:00:00 2001 From: David Calhoun Date: Mon, 22 Feb 2021 17:29:01 -0600 Subject: [PATCH 01/14] Fix documentation typos --- Documentation/ReleaseProcess.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Documentation/ReleaseProcess.md b/Documentation/ReleaseProcess.md index 38219be81..cfe75a7e9 100644 --- a/Documentation/ReleaseProcess.md +++ b/Documentation/ReleaseProcess.md @@ -34,7 +34,7 @@ Open a PR on github where you target the `trunk` branch with the `release/x.y.z` ### Step 2: Testing the Integration ### -Before going any further, tt's normally good practice to test the Aztec integration into [WordPress-iOS project](https://github.com/wordpress-mobile/WordPress-iOS), to make sure we won’t have to do the release process twice. +Before going any further, it's normally good practice to test the Aztec integration into [WordPress-iOS project](https://github.com/wordpress-mobile/WordPress-iOS), to make sure we won’t have to do the release process twice. Make sure WordPress-iOS’s podfile specifies the SAME (and latest) commit number for both of these: ``` @@ -65,7 +65,7 @@ Press the `Publish release` button At this moment the CI automation should notice your tag and after some minutes you should get the new pod publish on CocoaPods. -If this for some reason fails chech the manual process bellow +If this for some reason fails check the manual process below *Manual Process* From a4d3e6fa28c27410a8d58156a17c2d84175f1d6c Mon Sep 17 00:00:00 2001 From: David Calhoun Date: Thu, 25 Feb 2021 10:21:09 -0600 Subject: [PATCH 02/14] Fix documentation typo --- Documentation/ReleaseProcess.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/ReleaseProcess.md b/Documentation/ReleaseProcess.md index cfe75a7e9..bd74f5260 100644 --- a/Documentation/ReleaseProcess.md +++ b/Documentation/ReleaseProcess.md @@ -59,7 +59,7 @@ Create a new release on Github targetting the trunk branch and name it `Release Set a tag with the value `x.y.z` . -On the description field and the content of the changelog for this version +On the description field add the content of the changelog for this version Press the `Publish release` button From c915400b7116ab0fef76fede70a970c7bc66b0ad Mon Sep 17 00:00:00 2001 From: David Calhoun Date: Thu, 25 Feb 2021 12:21:15 -0600 Subject: [PATCH 03/14] Add note about CI check failures and pod publishing The merge commit for a release can suffer from failed CI checks if the check runs prior to the new version being populated in the CocoaPod CDN. --- Documentation/ReleaseProcess.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/ReleaseProcess.md b/Documentation/ReleaseProcess.md index bd74f5260..cb4cf4d8c 100644 --- a/Documentation/ReleaseProcess.md +++ b/Documentation/ReleaseProcess.md @@ -65,7 +65,7 @@ Press the `Publish release` button At this moment the CI automation should notice your tag and after some minutes you should get the new pod publish on CocoaPods. -If this for some reason fails check the manual process below +If this for some reason fails check the manual process below. Also note that the CI checks for a merged release PR can sometimes fail if the checks run prior to CocoaPods populating the new version through the CDN. Waiting a little while (e.g. 30-60 minutes) and rerunning the CI checks can sometimes repair the checks. *Manual Process* From ed33c10f028223fdb10bf41b846c484ba4f06358 Mon Sep 17 00:00:00 2001 From: Mickey Knox Date: Wed, 17 Mar 2021 16:42:50 +0100 Subject: [PATCH 04/14] Fix iOS 13 deprecation --- Aztec/Classes/EditorView/EditorView.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Aztec/Classes/EditorView/EditorView.swift b/Aztec/Classes/EditorView/EditorView.swift index 53d727161..2df843372 100644 --- a/Aztec/Classes/EditorView/EditorView.swift +++ b/Aztec/Classes/EditorView/EditorView.swift @@ -269,11 +269,11 @@ extension EditorView: UITextInput { return activeView.characterRange(byExtending: position, in: direction) } - public func baseWritingDirection(for position: UITextPosition, in direction: UITextStorageDirection) -> UITextWritingDirection { + public func baseWritingDirection(for position: UITextPosition, in direction: UITextStorageDirection) -> NSWritingDirection { return activeView.baseWritingDirection(for: position, in: direction) } - public func setBaseWritingDirection(_ writingDirection: UITextWritingDirection, for range: UITextRange) { + public func setBaseWritingDirection(_ writingDirection: NSWritingDirection, for range: UITextRange) { activeView.setBaseWritingDirection(writingDirection, for: range) } From 09c49f0ed3f4bf1f38c38ca01036ceac25b095e5 Mon Sep 17 00:00:00 2001 From: Olivier Halligon Date: Fri, 26 Mar 2021 19:04:12 +0100 Subject: [PATCH 05/14] Standardize WordPress-Aztec-iOS.podspec format --- WordPress-Aztec-iOS.podspec | 43 ++++++++++++++----------------------- 1 file changed, 16 insertions(+), 27 deletions(-) diff --git a/WordPress-Aztec-iOS.podspec b/WordPress-Aztec-iOS.podspec index 1dee3bd72..a9dbef96a 100644 --- a/WordPress-Aztec-iOS.podspec +++ b/WordPress-Aztec-iOS.podspec @@ -1,34 +1,22 @@ -# -# Be sure to run `bundle exec pod lib lint WordPress-Aztec-iOS.podspec' to ensure this is a -# valid spec before submitting. -# -# Any lines starting with a # are optional, but their use is encouraged -# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html -# - Pod::Spec.new do |s| - s.name = 'WordPress-Aztec-iOS' - s.version = '1.19.4' - s.summary = 'The native HTML Editor.' + s.name = 'WordPress-Aztec-iOS' + s.version = '1.19.4' + + s.summary = 'The native HTML Editor.' + s.description = <<-DESC + The native HTML Editor by Automattic Inc. -# This description is used to generate tags and improve search results. -# * Think: What does it do? Why did you write it? What is the focus? -# * Try to keep it short, snappy and to the point. -# * Write the description between the DESC delimiters below. -# * Finally, don't worry about the indent, CocoaPods strips it! + This library provides a UITextView subclass with HTML visual editing capabilities. + DESC - s.description = <<-DESC - The native HTML Editor by Automattic Inc. - DESC + s.homepage = 'https://github.com/wordpress-mobile/WordPress-Aztec-iOS' + s.license = { :type => 'MPLv2', :file => 'LICENSE.md' } + s.author = { 'The WordPress Mobile Team' => 'mobile@automattic.com' } - s.homepage = 'https://github.com/wordpress-mobile/WordPress-Aztec-iOS' - # s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2' - s.license = { :type => 'MPLv2', :file => 'LICENSE.md' } - s.author = { 'Automattic' => 'mobile@automattic.com', 'Diego Rey Mendez' => 'diego.rey.mendez@automattic.com', 'Sergio Estevao' => 'sergioestevao@gmail.com', 'Jorge Leandro Perez' => 'jorge.perez@automattic.com' } - s.source = { :git => 'https://github.com/wordpress-mobile/WordPress-Aztec-iOS.git', :tag => s.version.to_s } s.ios.deployment_target = '11.0' s.swift_version = '5.0' + s.source = { :git => 'https://github.com/wordpress-mobile/WordPress-Aztec-iOS.git', :tag => s.version.to_s } s.module_name = "Aztec" s.source_files = 'Aztec/Classes/**/*' s.resource_bundles = { @@ -36,7 +24,8 @@ Pod::Spec.new do |s| "Aztec/Assets/**/*" ] } - - s.xcconfig = {'OTHER_LDFLAGS' => '-lxml2', - 'HEADER_SEARCH_PATHS' => '/usr/include/libxml2'} + s.xcconfig = { + 'OTHER_LDFLAGS' => '-lxml2', + 'HEADER_SEARCH_PATHS' => '/usr/include/libxml2' + } end From feef868759f354cd51d7a5fced34d3a84f62c262 Mon Sep 17 00:00:00 2001 From: Olivier Halligon Date: Fri, 26 Mar 2021 19:10:35 +0100 Subject: [PATCH 06/14] Standardize WordPress-Editor-iOS.podspec format --- WordPress-Editor-iOS.podspec | 45 +++++++++++++++--------------------- 1 file changed, 18 insertions(+), 27 deletions(-) diff --git a/WordPress-Editor-iOS.podspec b/WordPress-Editor-iOS.podspec index fcf4e235f..321c8c265 100644 --- a/WordPress-Editor-iOS.podspec +++ b/WordPress-Editor-iOS.podspec @@ -1,39 +1,30 @@ -# -# Be sure to run `bundle exec pod lib lint WordPress-Editor-iOS.podspec' to ensure this is a -# valid spec before submitting. -# -# Any lines starting with a # are optional, but their use is encouraged -# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html -# - Pod::Spec.new do |s| - s.name = 'WordPress-Editor-iOS' - s.version = '1.19.4' - s.summary = 'The WordPress HTML Editor.' + s.name = 'WordPress-Editor-iOS' + s.version = '1.19.4' + + s.summary = 'The WordPress HTML Editor.' + s.description = <<-DESC + The WordPress HTML Editor by Automattic Inc. -# This description is used to generate tags and improve search results. -# * Think: What does it do? Why did you write it? What is the focus? -# * Try to keep it short, snappy and to the point. -# * Write the description between the DESC delimiters below. -# * Finally, don't worry about the indent, CocoaPods strips it! + This library provides a UITextView subclass with HTML visual editing capabilities. + Use this library if you want to create an App that interacts with WordPress HTML content. + DESC - s.description = <<-DESC - The WordPress HTML Editor by Automattic Inc. - DESC + s.homepage = 'https://github.com/wordpress-mobile/WordPress-Aztec-iOS' + s.license = { :type => 'MPLv2', :file => 'LICENSE.md' } + s.author = { 'The WordPress Mobile Team' => 'mobile@automattic.com' } - s.homepage = 'https://github.com/wordpress-mobile/WordPress-Aztec-iOS' - # s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2' - s.license = { :type => 'MPLv2', :file => 'LICENSE.md' } - s.author = { 'Automattic' => 'mobile@automattic.com', 'Diego Rey Mendez' => 'diego.rey.mendez@automattic.com', 'Sergio Estevao' => 'sergioestevao@gmail.com', 'Jorge Leandro Perez' => 'jorge.perez@automattic.com' } - s.source = { :git => 'https://github.com/wordpress-mobile/WordPress-Aztec-iOS.git', :tag => s.version.to_s } s.ios.deployment_target = '11.0' s.swift_version = '5.0' + + s.source = { :git => 'https://github.com/wordpress-mobile/WordPress-Aztec-iOS.git', :tag => s.version.to_s } s.module_name = "WordPressEditor" s.source_files = 'WordPressEditor/WordPressEditor/Classes/**/*' s.resources = 'WordPressEditor/WordPressEditor/Assets/**/*' - - s.xcconfig = {'OTHER_LDFLAGS' => '-lxml2', - 'HEADER_SEARCH_PATHS' => '/usr/include/libxml2'} + s.xcconfig = { + 'OTHER_LDFLAGS' => '-lxml2', + 'HEADER_SEARCH_PATHS' => '/usr/include/libxml2' + } s.dependency "WordPress-Aztec-iOS", s.version.to_s end From 8e035a97005c3035c495163b06e59ab4cdaeded0 Mon Sep 17 00:00:00 2001 From: Olivier Halligon Date: Fri, 26 Mar 2021 19:19:35 +0100 Subject: [PATCH 07/14] Update git URL to new repo name --- WordPress-Aztec-iOS.podspec | 4 ++-- WordPress-Editor-iOS.podspec | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/WordPress-Aztec-iOS.podspec b/WordPress-Aztec-iOS.podspec index a9dbef96a..2c0cb4b39 100644 --- a/WordPress-Aztec-iOS.podspec +++ b/WordPress-Aztec-iOS.podspec @@ -9,14 +9,14 @@ Pod::Spec.new do |s| This library provides a UITextView subclass with HTML visual editing capabilities. DESC - s.homepage = 'https://github.com/wordpress-mobile/WordPress-Aztec-iOS' + s.homepage = 'https://github.com/wordpress-mobile/AztecEditor-iOS' s.license = { :type => 'MPLv2', :file => 'LICENSE.md' } s.author = { 'The WordPress Mobile Team' => 'mobile@automattic.com' } s.ios.deployment_target = '11.0' s.swift_version = '5.0' - s.source = { :git => 'https://github.com/wordpress-mobile/WordPress-Aztec-iOS.git', :tag => s.version.to_s } + s.source = { :git => 'https://github.com/wordpress-mobile/AztecEditor-iOS.git', :tag => s.version.to_s } s.module_name = "Aztec" s.source_files = 'Aztec/Classes/**/*' s.resource_bundles = { diff --git a/WordPress-Editor-iOS.podspec b/WordPress-Editor-iOS.podspec index 321c8c265..a89d1c35b 100644 --- a/WordPress-Editor-iOS.podspec +++ b/WordPress-Editor-iOS.podspec @@ -10,14 +10,14 @@ Pod::Spec.new do |s| Use this library if you want to create an App that interacts with WordPress HTML content. DESC - s.homepage = 'https://github.com/wordpress-mobile/WordPress-Aztec-iOS' + s.homepage = 'https://github.com/wordpress-mobile/AztecEditor-iOS' s.license = { :type => 'MPLv2', :file => 'LICENSE.md' } s.author = { 'The WordPress Mobile Team' => 'mobile@automattic.com' } s.ios.deployment_target = '11.0' s.swift_version = '5.0' - s.source = { :git => 'https://github.com/wordpress-mobile/WordPress-Aztec-iOS.git', :tag => s.version.to_s } + s.source = { :git => 'https://github.com/wordpress-mobile/AztecEditor-iOS.git', :tag => s.version.to_s } s.module_name = "WordPressEditor" s.source_files = 'WordPressEditor/WordPressEditor/Classes/**/*' s.resources = 'WordPressEditor/WordPressEditor/Assets/**/*' From d60536e400b819aad33a9bbf0496ab32324e2a0d Mon Sep 17 00:00:00 2001 From: Olivier Halligon Date: Fri, 26 Mar 2021 19:23:43 +0100 Subject: [PATCH 08/14] Fix tab vs spaces --- WordPress-Aztec-iOS.podspec | 2 +- WordPress-Editor-iOS.podspec | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/WordPress-Aztec-iOS.podspec b/WordPress-Aztec-iOS.podspec index 2c0cb4b39..342122f5a 100644 --- a/WordPress-Aztec-iOS.podspec +++ b/WordPress-Aztec-iOS.podspec @@ -26,6 +26,6 @@ Pod::Spec.new do |s| } s.xcconfig = { 'OTHER_LDFLAGS' => '-lxml2', - 'HEADER_SEARCH_PATHS' => '/usr/include/libxml2' + 'HEADER_SEARCH_PATHS' => '/usr/include/libxml2' } end diff --git a/WordPress-Editor-iOS.podspec b/WordPress-Editor-iOS.podspec index a89d1c35b..03b6ec0a3 100644 --- a/WordPress-Editor-iOS.podspec +++ b/WordPress-Editor-iOS.podspec @@ -23,7 +23,7 @@ Pod::Spec.new do |s| s.resources = 'WordPressEditor/WordPressEditor/Assets/**/*' s.xcconfig = { 'OTHER_LDFLAGS' => '-lxml2', - 'HEADER_SEARCH_PATHS' => '/usr/include/libxml2' + 'HEADER_SEARCH_PATHS' => '/usr/include/libxml2' } s.dependency "WordPress-Aztec-iOS", s.version.to_s From 2c23d6f876c44345d15f9a2daad2cf765ebecfc9 Mon Sep 17 00:00:00 2001 From: Olivier Halligon Date: Fri, 26 Mar 2021 20:21:49 +0100 Subject: [PATCH 09/14] Fix author email --- WordPress-Aztec-iOS.podspec | 2 +- WordPress-Editor-iOS.podspec | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/WordPress-Aztec-iOS.podspec b/WordPress-Aztec-iOS.podspec index 342122f5a..be122288f 100644 --- a/WordPress-Aztec-iOS.podspec +++ b/WordPress-Aztec-iOS.podspec @@ -11,7 +11,7 @@ Pod::Spec.new do |s| s.homepage = 'https://github.com/wordpress-mobile/AztecEditor-iOS' s.license = { :type => 'MPLv2', :file => 'LICENSE.md' } - s.author = { 'The WordPress Mobile Team' => 'mobile@automattic.com' } + s.author = { 'The WordPress Mobile Team' => 'mobile@wordpress.org' } s.ios.deployment_target = '11.0' s.swift_version = '5.0' diff --git a/WordPress-Editor-iOS.podspec b/WordPress-Editor-iOS.podspec index 03b6ec0a3..aa46ab5f6 100644 --- a/WordPress-Editor-iOS.podspec +++ b/WordPress-Editor-iOS.podspec @@ -12,7 +12,7 @@ Pod::Spec.new do |s| s.homepage = 'https://github.com/wordpress-mobile/AztecEditor-iOS' s.license = { :type => 'MPLv2', :file => 'LICENSE.md' } - s.author = { 'The WordPress Mobile Team' => 'mobile@automattic.com' } + s.author = { 'The WordPress Mobile Team' => 'mobile@wordpress.org' } s.ios.deployment_target = '11.0' s.swift_version = '5.0' From ffd7b102feaa6650750f42fddedc5c759ee49aa4 Mon Sep 17 00:00:00 2001 From: Gerardo Pacheco Date: Tue, 5 Oct 2021 16:34:03 +0200 Subject: [PATCH 10/14] Feature - Add Mark tag support --- .../Implementations/GenericElementConverter.swift | 2 +- Aztec/Classes/Libxml2/DOM/Data/Element.swift | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Aztec/Classes/Converters/ElementsToAttributedString/Implementations/GenericElementConverter.swift b/Aztec/Classes/Converters/ElementsToAttributedString/Implementations/GenericElementConverter.swift index 80f64de3a..aca55ab0c 100644 --- a/Aztec/Classes/Converters/ElementsToAttributedString/Implementations/GenericElementConverter.swift +++ b/Aztec/Classes/Converters/ElementsToAttributedString/Implementations/GenericElementConverter.swift @@ -11,7 +11,7 @@ class GenericElementConverter: ElementConverter { /// At some point we should modify how the conversion works, so that any supported element never goes through this /// converter at all, and this converter is turned into an `UnsupportedElementConverter()` exclusively. /// - private static let supportedElements: [Element] = [.a, .aztecRootNode, .b, .br, .blockquote, .del, .div, .em, .figure, .figcaption, .h1, .h2, .h3, .h4, .h5, .h6, .hr, .i, .img, .li, .ol, .p, .pre, .s, .span, .strike, .strong, .u, .ul, .video, .code, .sup, .sub] + private static let supportedElements: [Element] = [.a, .aztecRootNode, .b, .br, .blockquote, .del, .div, .em, .figure, .figcaption, .h1, .h2, .h3, .h4, .h5, .h6, .hr, .i, .img, .li, .ol, .p, .pre, .s, .span, .strike, .strong, .u, .ul, .video, .code, .sup, .sub, .mark] // MARK: - Built-in formatter instances diff --git a/Aztec/Classes/Libxml2/DOM/Data/Element.swift b/Aztec/Classes/Libxml2/DOM/Data/Element.swift index 308f73d35..610ba6e9d 100644 --- a/Aztec/Classes/Libxml2/DOM/Data/Element.swift +++ b/Aztec/Classes/Libxml2/DOM/Data/Element.swift @@ -30,7 +30,7 @@ public struct Element: RawRepresentable, Hashable { public static var mergeableBlockLevelElements = Set([.blockquote, .div, .figure, .figcaption, .h1, .h2, .h3, .h4, .h5, .h6, .hr, .li, .ol, .ul, .p, .pre]) /// List of style HTML elements that can be merged together when they are sibling to each other - public static var mergeableStyleElements = Set([.i, .em, .b, .strong, .strike, .u, .code, .cite, .a, .sup, .sub]) + public static var mergeableStyleElements = Set([.i, .em, .b, .strong, .strike, .u, .code, .cite, .a, .sup, .sub, .mark]) /// List of block level elements that can be merged but only when they have a single children that is also mergeable /// @@ -121,6 +121,7 @@ extension Element { public static let video = Element("video") public static let wbr = Element("wbr") public static let body = Element("body") + public static let mark = Element("mark") } From c051034d510657564cd00a45d3d9b10cca068494 Mon Sep 17 00:00:00 2001 From: Gerardo Pacheco Date: Tue, 5 Oct 2021 16:42:41 +0200 Subject: [PATCH 11/14] Update sample content with the mark tag --- Example/Example/SampleContent/content.html | 6 ++++++ Example/Example/SampleContent/gutenberg.html | 8 ++++++++ 2 files changed, 14 insertions(+) diff --git a/Example/Example/SampleContent/content.html b/Example/Example/SampleContent/content.html index f2fe34588..3d5b715ba 100644 --- a/Example/Example/SampleContent/content.html +++ b/Example/Example/SampleContent/content.html @@ -159,3 +159,9 @@

Unsupported HTML


+ +

Mark

+ +

Donec ipsum dolor, tempor sed bibendum vita.

+ +
diff --git a/Example/Example/SampleContent/gutenberg.html b/Example/Example/SampleContent/gutenberg.html index 772dbed27..edf1e78f9 100644 --- a/Example/Example/SampleContent/gutenberg.html +++ b/Example/Example/SampleContent/gutenberg.html @@ -140,3 +140,11 @@

The WordPress of tomorrow

+ + +
+ + + +

Donec ipsum dolor, tempor sed bibendum vita.

+ \ No newline at end of file From 88ddfde23fda1f0042aa5462811b8ce310f0cdf8 Mon Sep 17 00:00:00 2001 From: Gerardo Pacheco Date: Tue, 5 Oct 2021 16:42:49 +0200 Subject: [PATCH 12/14] Update changelog --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index ec6389e0a..2797701a6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +1.19.5 +------- +* Addd support for the Mark HTML tag. + 1.19.4 ------- * Fix Carthage build for Xcode 12 From d0af87a27dd1298cb64cd9bd4999d3c207521f80 Mon Sep 17 00:00:00 2001 From: Jeremy Massel <1123407+jkmassel@users.noreply.github.com> Date: Thu, 7 Oct 2021 13:36:44 -0600 Subject: [PATCH 13/14] Try fixing CI --- .circleci/config.yml | 4 ++-- .ruby-version | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) create mode 100644 .ruby-version diff --git a/.circleci/config.yml b/.circleci/config.yml index c6569b798..900eb1b0d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -6,11 +6,11 @@ orbs: git: wordpress-mobile/git@1.0 xcode_version: &xcode_version - xcode-version: "12.1.0" + xcode-version: "12.4.0" iphone_test_device: &iphone_test_device device: iPhone 11 - ios-version: "14.1" + ios-version: "14.4" workflows: test_and_validate: diff --git a/.ruby-version b/.ruby-version new file mode 100644 index 000000000..2714f5313 --- /dev/null +++ b/.ruby-version @@ -0,0 +1 @@ +2.6.4 From 464234342928334748631c88664f60910f32d946 Mon Sep 17 00:00:00 2001 From: Gerardo Pacheco Date: Tue, 26 Oct 2021 11:11:41 +0200 Subject: [PATCH 14/14] Update version to 1.19.5 --- WordPress-Aztec-iOS.podspec | 2 +- WordPress-Editor-iOS.podspec | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/WordPress-Aztec-iOS.podspec b/WordPress-Aztec-iOS.podspec index be122288f..dc77a2f60 100644 --- a/WordPress-Aztec-iOS.podspec +++ b/WordPress-Aztec-iOS.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'WordPress-Aztec-iOS' - s.version = '1.19.4' + s.version = '1.19.5' s.summary = 'The native HTML Editor.' s.description = <<-DESC diff --git a/WordPress-Editor-iOS.podspec b/WordPress-Editor-iOS.podspec index aa46ab5f6..dea91e6db 100644 --- a/WordPress-Editor-iOS.podspec +++ b/WordPress-Editor-iOS.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'WordPress-Editor-iOS' - s.version = '1.19.4' + s.version = '1.19.5' s.summary = 'The WordPress HTML Editor.' s.description = <<-DESC