From 3e1468b5bf44b5ab28e1137c024626f070899226 Mon Sep 17 00:00:00 2001 From: Spencer Transier Date: Fri, 23 Feb 2024 13:47:44 -0800 Subject: [PATCH 1/5] Update version to `1.19.10` --- CHANGELOG.md | 11 ++++++++--- WordPress-Aztec-iOS.podspec | 2 +- WordPress-Editor-iOS.podspec | 2 +- 3 files changed, 10 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index aa41958ee..f428434af 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -42,15 +42,20 @@ _None._ ### Bug Fixes -- Fixed crash when attempting to render Gutenberg comment. [#1383] -- Fixed crash when underlining text with special glyphs. [#1384] +_None._ ### Internal Changes _None._ +## 1.19.10 + +### Bug Fixes + +- Fixed crash when attempting to render Gutenberg comment. [#1383] +- Fixed crash when underlining text with special glyphs. [#1384] -## [1.19.9](https://github.com/wordpress-mobile/AztecEditor-iOS/releases/tag/1.19.9) +## 1.19.9 ### Breaking Changes diff --git a/WordPress-Aztec-iOS.podspec b/WordPress-Aztec-iOS.podspec index 568a52131..950fb0155 100644 --- a/WordPress-Aztec-iOS.podspec +++ b/WordPress-Aztec-iOS.podspec @@ -2,7 +2,7 @@ Pod::Spec.new do |s| s.name = 'WordPress-Aztec-iOS' - s.version = '1.19.9' + s.version = '1.19.10' s.summary = 'The native HTML Editor.' s.description = <<-DESC diff --git a/WordPress-Editor-iOS.podspec b/WordPress-Editor-iOS.podspec index da485d5f1..36fa15972 100644 --- a/WordPress-Editor-iOS.podspec +++ b/WordPress-Editor-iOS.podspec @@ -2,7 +2,7 @@ Pod::Spec.new do |s| s.name = 'WordPress-Editor-iOS' - s.version = '1.19.9' + s.version = '1.19.10' s.summary = 'The WordPress HTML Editor.' s.description = <<-DESC From 94ddb6b201f3b8e9f0d313b8af72d6890957477b Mon Sep 17 00:00:00 2001 From: Spencer Transier Date: Fri, 23 Feb 2024 15:00:26 -0800 Subject: [PATCH 2/5] Use `--patch-cocoapods` --- .buildkite/pipeline.yml | 2 +- .buildkite/publish-aztec-pod.sh | 4 ++-- .buildkite/publish-editor.pod.sh | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml index b19eab5c6..cbe507251 100644 --- a/.buildkite/pipeline.yml +++ b/.buildkite/pipeline.yml @@ -24,7 +24,7 @@ steps: - label: "🔬 Validate Podspecs" key: "validate" command: | - validate_podspec + validate_podspec --patch-cocoapods env: *common_env plugins: *common_plugins diff --git a/.buildkite/publish-aztec-pod.sh b/.buildkite/publish-aztec-pod.sh index a0beab3ba..c5b59d73e 100644 --- a/.buildkite/publish-aztec-pod.sh +++ b/.buildkite/publish-aztec-pod.sh @@ -8,10 +8,10 @@ echo "--- :rubygems: Setting up Gems" install_gems echo "--- :cocoapods: Publishing Pod to CocoaPods CDN" -publish_pod $PODSPEC_PATH +publish_pod --patch-cocoapods $PODSPEC_PATH echo "--- :cocoapods: Publishing Pod to WP Specs Repo" -publish_private_pod $PODSPEC_PATH $SPECS_REPO "$SPEC_REPO_PUBLIC_DEPLOY_KEY" +publish_private_pod --patch-cocoapods $PODSPEC_PATH $SPECS_REPO "$SPEC_REPO_PUBLIC_DEPLOY_KEY" echo "--- :slack: Notifying Slack" slack_notify_pod_published $PODSPEC_PATH $SLACK_WEBHOOK diff --git a/.buildkite/publish-editor.pod.sh b/.buildkite/publish-editor.pod.sh index 68dbb507c..7712e3b7f 100644 --- a/.buildkite/publish-editor.pod.sh +++ b/.buildkite/publish-editor.pod.sh @@ -8,10 +8,10 @@ echo "--- :rubygems: Setting up Gems" install_gems echo "--- :cocoapods: Publishing Pod to CocoaPods CDN" -publish_pod $PODSPEC_PATH +publish_pod --patch-cocoapods $PODSPEC_PATH echo "--- :cocoapods: Publishing Pod to WP Specs Repo" -publish_private_pod $PODSPEC_PATH $SPECS_REPO "$SPEC_REPO_PUBLIC_DEPLOY_KEY" +publish_private_pod --patch-cocoapods $PODSPEC_PATH $SPECS_REPO "$SPEC_REPO_PUBLIC_DEPLOY_KEY" echo "--- :slack: Notifying Slack" slack_notify_pod_published $PODSPEC_PATH $SLACK_WEBHOOK From d10c5a182689765cd8285cc7ea4df004f2131882 Mon Sep 17 00:00:00 2001 From: Spencer Transier Date: Fri, 23 Feb 2024 15:49:51 -0800 Subject: [PATCH 3/5] Revert "Use `--patch-cocoapods`" This reverts commit 94ddb6b201f3b8e9f0d313b8af72d6890957477b. --- .buildkite/pipeline.yml | 2 +- .buildkite/publish-aztec-pod.sh | 4 ++-- .buildkite/publish-editor.pod.sh | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml index cbe507251..b19eab5c6 100644 --- a/.buildkite/pipeline.yml +++ b/.buildkite/pipeline.yml @@ -24,7 +24,7 @@ steps: - label: "🔬 Validate Podspecs" key: "validate" command: | - validate_podspec --patch-cocoapods + validate_podspec env: *common_env plugins: *common_plugins diff --git a/.buildkite/publish-aztec-pod.sh b/.buildkite/publish-aztec-pod.sh index c5b59d73e..a0beab3ba 100644 --- a/.buildkite/publish-aztec-pod.sh +++ b/.buildkite/publish-aztec-pod.sh @@ -8,10 +8,10 @@ echo "--- :rubygems: Setting up Gems" install_gems echo "--- :cocoapods: Publishing Pod to CocoaPods CDN" -publish_pod --patch-cocoapods $PODSPEC_PATH +publish_pod $PODSPEC_PATH echo "--- :cocoapods: Publishing Pod to WP Specs Repo" -publish_private_pod --patch-cocoapods $PODSPEC_PATH $SPECS_REPO "$SPEC_REPO_PUBLIC_DEPLOY_KEY" +publish_private_pod $PODSPEC_PATH $SPECS_REPO "$SPEC_REPO_PUBLIC_DEPLOY_KEY" echo "--- :slack: Notifying Slack" slack_notify_pod_published $PODSPEC_PATH $SLACK_WEBHOOK diff --git a/.buildkite/publish-editor.pod.sh b/.buildkite/publish-editor.pod.sh index 7712e3b7f..68dbb507c 100644 --- a/.buildkite/publish-editor.pod.sh +++ b/.buildkite/publish-editor.pod.sh @@ -8,10 +8,10 @@ echo "--- :rubygems: Setting up Gems" install_gems echo "--- :cocoapods: Publishing Pod to CocoaPods CDN" -publish_pod --patch-cocoapods $PODSPEC_PATH +publish_pod $PODSPEC_PATH echo "--- :cocoapods: Publishing Pod to WP Specs Repo" -publish_private_pod --patch-cocoapods $PODSPEC_PATH $SPECS_REPO "$SPEC_REPO_PUBLIC_DEPLOY_KEY" +publish_private_pod $PODSPEC_PATH $SPECS_REPO "$SPEC_REPO_PUBLIC_DEPLOY_KEY" echo "--- :slack: Notifying Slack" slack_notify_pod_published $PODSPEC_PATH $SLACK_WEBHOOK From 38c1d963656d6f4e813efc4d2d5ba6c41c080f3d Mon Sep 17 00:00:00 2001 From: Spencer Transier Date: Fri, 23 Feb 2024 15:50:18 -0800 Subject: [PATCH 4/5] Update to 1.19.11 --- 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 950fb0155..48255db3b 100644 --- a/WordPress-Aztec-iOS.podspec +++ b/WordPress-Aztec-iOS.podspec @@ -2,7 +2,7 @@ Pod::Spec.new do |s| s.name = 'WordPress-Aztec-iOS' - s.version = '1.19.10' + s.version = '1.19.11' s.summary = 'The native HTML Editor.' s.description = <<-DESC diff --git a/WordPress-Editor-iOS.podspec b/WordPress-Editor-iOS.podspec index 36fa15972..9a29b2618 100644 --- a/WordPress-Editor-iOS.podspec +++ b/WordPress-Editor-iOS.podspec @@ -2,7 +2,7 @@ Pod::Spec.new do |s| s.name = 'WordPress-Editor-iOS' - s.version = '1.19.10' + s.version = '1.19.11' s.summary = 'The WordPress HTML Editor.' s.description = <<-DESC From ed135d2ff3089d63566061244627e55fb492fc2f Mon Sep 17 00:00:00 2001 From: Spencer Transier Date: Fri, 23 Feb 2024 15:53:27 -0800 Subject: [PATCH 5/5] Revert "Update to 1.19.11" This reverts commit 38c1d963656d6f4e813efc4d2d5ba6c41c080f3d. --- 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 48255db3b..950fb0155 100644 --- a/WordPress-Aztec-iOS.podspec +++ b/WordPress-Aztec-iOS.podspec @@ -2,7 +2,7 @@ Pod::Spec.new do |s| s.name = 'WordPress-Aztec-iOS' - s.version = '1.19.11' + s.version = '1.19.10' s.summary = 'The native HTML Editor.' s.description = <<-DESC diff --git a/WordPress-Editor-iOS.podspec b/WordPress-Editor-iOS.podspec index 9a29b2618..36fa15972 100644 --- a/WordPress-Editor-iOS.podspec +++ b/WordPress-Editor-iOS.podspec @@ -2,7 +2,7 @@ Pod::Spec.new do |s| s.name = 'WordPress-Editor-iOS' - s.version = '1.19.11' + s.version = '1.19.10' s.summary = 'The WordPress HTML Editor.' s.description = <<-DESC