Skip to content

Commit ca9f73c

Browse files
Merge pull request #2 from peterwilsoncc/release/1.1.0
Initial WordPress.org Release: 1.1.0
2 parents 9b6bd7c + a7c5f96 commit ca9f73c

File tree

6 files changed

+18
-22
lines changed

6 files changed

+18
-22
lines changed

.github/workflows/wporg-assets-update.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ on:
55
- main
66
jobs:
77
update_assets:
8-
# Disable workflow until release on WordPress.org
9-
if: false
108
name: Push asset update to WordPress.org
119
runs-on: ubuntu-latest
1210
steps:

.github/workflows/wporg-deploy.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ on:
66

77
jobs:
88
deploy_to_wp_repository:
9-
# Disable workflow until release on WordPress.org
10-
if: false
119
name: Deploy to WP.org
1210
runs-on: ubuntu-latest
1311
steps:

inc/namespace.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
namespace PWCC\SimpleSearchSubmission;
99

10-
const PLUGIN_VERSION = '1.0.0';
10+
const PLUGIN_VERSION = '1.1.0';
1111

1212
/**
1313
* Bootstrap the plugin.

readme.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,7 @@ The biggest features of this plugin are the features that it's missing:
2323
* there are no custom database tables, it just works
2424
* simply put, there is no fuss!
2525

26-
Simple Search Submission for IndexNow submits the update requests as you save your content. If you wish to submit the URLs
27-
asynchronously via a cron job, you can include the code `add_filter( 'simple_search_submission_notify_async', '__return_true' );`
28-
in your theme or or plugin.
26+
Simple Search Submission for IndexNow submits the update requests as you save your content. If you wish to submit the URLs asynchronously via a cron job, you can include the code `add_filter( 'simple_search_submission_notify_async', '__return_true' );` in your theme or or plugin.
2927

3028
## Installation
3129

@@ -39,7 +37,7 @@ composer require peterwilsoncc/simple-search-submission
3937

4038
*Downloads*
4139

42-
* Via WordPress.org (Pending)
40+
* [Via WordPress.org](https://wordpress.org/plugins/simple-search-submission/)
4341
* [Via GitHub](https://github.com/peterwilsoncc/simple-search-submission/releases/latest)
4442

4543
## Frequently Asked Questions
@@ -66,20 +64,22 @@ This plugin is intended as a replacement for the Bing plugin that is much simpli
6664

6765
IndexNow supports both notifications for newly published content and newly unpublished content.
6866

69-
When unpublishing content, the notification serves as a request to de-index the newly 404 response on your site.
70-
Sending a de-indexing request ensures that your site's old content does not appear in indexes and result in a file not found error.
67+
When unpublishing content, the notification serves as a request to de-index the newly 404 response on your site. Sending a de-indexing request ensures that your site's old content does not appear in indexes and result in a file not found error.
7168

7269
### Are notifications sent from non-production sites?
7370

7471
No.
7572

7673
The plugin uses `wp_get_environment_type()` to determine whether to send notifications to IndexNow.
7774

78-
For non-production environments, the request that would have been sent are logged in the PHP error log file to allow for
79-
developers to debug any requests. The notification is not actually sent to IndexNow.
75+
For non-production environments, the request that would have been sent are logged in the PHP error log file to allow for developers to debug any requests. The notification is not actually sent to IndexNow.
8076

8177
## Changelog
8278

79+
### 1.1.0
80+
81+
Initial WordPress.org release
82+
8383
### 1.0.0
8484

8585
* Initial release

readme.txt

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Contributors: peterwilsoncc
33
Tags:
44
Tested up to: 6.8
5-
Stable tag: 1.0.0
5+
Stable tag: 1.1.0
66
License: GPL-2.0-or-later
77
License URI: https://github.com/peterwilsoncc/simple-search-submission/blob/main/LICENSE
88

@@ -29,9 +29,7 @@ The biggest features of this plugin are the features that it's missing:
2929
* there are no custom database tables, it just works
3030
* simply put, there is no fuss!
3131

32-
Simple Search Submission for IndexNow submits the update requests as you save your content. If you wish to submit the URLs
33-
asynchronously via a cron job, you can include the code `add_filter( 'simple_search_submission_notify_async', '__return_true' );`
34-
in your theme or or plugin.
32+
Simple Search Submission for IndexNow submits the update requests as you save your content. If you wish to submit the URLs asynchronously via a cron job, you can include the code `add_filter( 'simple_search_submission_notify_async', '__return_true' );` in your theme or or plugin.
3533

3634
== Frequently Asked Questions ==
3735

@@ -57,20 +55,22 @@ This plugin is intended as a replacement for the Bing plugin that is much simpli
5755

5856
IndexNow supports both notifications for newly published content and newly unpublished content.
5957

60-
When unpublishing content, the notification serves as a request to de-index the newly 404 response on your site.
61-
Sending a de-indexing request ensures that your site's old content does not appear in indexes and result in a file not found error.
58+
When unpublishing content, the notification serves as a request to de-index the newly 404 response on your site. Sending a de-indexing request ensures that your site's old content does not appear in indexes and result in a file not found error.
6259

6360
= Are notifications sent from non-production sites? =
6461

6562
No.
6663

6764
The plugin uses `wp_get_environment_type()` to determine whether to send notifications to IndexNow.
6865

69-
For non-production environments, the request that would have been sent are logged in the PHP error log file to allow for
70-
developers to debug any requests. The notification is not actually sent to IndexNow.
66+
For non-production environments, the request that would have been sent are logged in the PHP error log file to allow for developers to debug any requests. The notification is not actually sent to IndexNow.
7167

7268
== Changelog ==
7369

70+
= 1.1.0 =
71+
72+
* Initial WordPress.org release.
73+
7474
= 1.0.0 =
7575

7676
* Initial release

simple-search-submission.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* @wordpress-plugin
1111
* Plugin Name: Simple Search Submission for IndexNow
1212
* Description: A simplified plugin for submitting crawl requests to search engines supporting IndexNow.
13-
* Version: 1.0.0
13+
* Version: 1.1.0
1414
* Requires at least: 6.3
1515
* Requires PHP: 7.4
1616
* Author: Peter Wilson

0 commit comments

Comments
 (0)