Skip to content

Commit e0b0a50

Browse files
authored
Merge pull request #237 from brainstormforce/1.7.7
Added changelog and updated version number
2 parents 7dcd211 + 3dc75f6 commit e0b0a50

File tree

11 files changed

+17
-17
lines changed

11 files changed

+17
-17
lines changed

CLAUDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
WordPress plugin by Brainstorm Force that adds structured data (schema markup / Microdata) to posts and pages via a meta box interface.
44

55
- **Plugin slug:** `all-in-one-schemaorg-rich-snippets`
6-
- **Version:** 1.7.6
6+
- **Version:** 1.7.7
77
- **Text domain:** `rich-snippets`
88
- **PHP:** 7.4 – 8.3 | **WP:** 3.7+ (tested to 6.9)
99
- **License:** GPL v2

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
**Tags:** schema markup, rich snippets, wordpress seo, structured data, google search
55
**Requires at least:** 3.7
66
**Tested up to:** 6.9
7-
**Stable tag:** 1.7.6
7+
**Stable tag:** 1.7.7
88
**Requires PHP:** 7.4
99
**License:** GPLv2 or later
1010
**License URI:** http://www.gnu.org/licenses/gpl-2.0.html
@@ -98,7 +98,7 @@ No, the plugin provides an easy-to-use interface where you can add schema markup
9898

9999
## Changelog ##
100100
### 1.7.7 ###
101-
- Improvement: Added Security fixes.
101+
- Security Enhancements: Strengthened overall plugin security with improved authorization checks, robust nonce verification, thorough input sanitization, and enhanced error handling.
102102

103103
### 1.7.6 ###
104104
- Improvement: Updated readme.txt.

docs/wiki/Changelog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ All notable changes to Schema - All In One Schema Rich Snippets are documented h
44

55
---
66

7-
## 1.7.6
7+
## 1.7.7
88
- **Improvement:** Updated readme.txt.
99

1010
## 1.7.5

docs/wiki/Environment-Configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Defined in `RichSnippets::define_constants()` (`index.php`) during every page lo
2020
| `AIOSRS_PRO_BASE` | `plugin_basename(AIOSRS_PRO_FILE)` | Relative plugin identifier (e.g. `all-in-one-schemaorg-rich-snippets/index.php`) |
2121
| `AIOSRS_PRO_DIR` | `plugin_dir_path(AIOSRS_PRO_FILE)` | Absolute directory path with trailing slash |
2222
| `AIOSRS_PRO_URI` | `plugins_url('/', AIOSRS_PRO_FILE)` | URL to the plugin root |
23-
| `AIOSRS_PRO_VER` | `'1.7.6'` | Current plugin version |
23+
| `AIOSRS_PRO_VER` | `'1.7.7'` | Current plugin version |
2424
| `BSF_META_BOX_URL` | Computed in `init.php` | URL path to the plugin directory, OS-aware (handles Windows paths) |
2525

2626
---

docs/wiki/Home.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Schema - All In One Schema Rich Snippets
22

3-
**Version:** 1.7.6 | **Author:** [Brainstorm Force](https://www.brainstormforce.com) | **License:** GPL v2
3+
**Version:** 1.7.7 | **Author:** [Brainstorm Force](https://www.brainstormforce.com) | **License:** GPL v2
44

55
> Improve SEO, elevate rankings, and boost CTR. Add structured data (schema markup) to posts and pages without coding.
66
@@ -32,7 +32,7 @@ Supported schema types: **Review**, **Event**, **Person**, **Product**, **Recipe
3232
| [Deployment Guide](Deployment-Guide) | Build, i18n, and release process |
3333
| [Contributing Guide](Contributing-Guide) | Branch workflow, coding standards, PR process |
3434
| [Troubleshooting FAQ](Troubleshooting-FAQ) | Common issues and solutions |
35-
| [Changelog](Changelog) | Version history (v1.0 → v1.7.6) |
35+
| [Changelog](Changelog) | Version history (v1.0 → v1.7.7) |
3636

3737
---
3838

docs/wiki/_Footer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Schema - All In One Schema Rich Snippets v1.7.6 | By [Brainstorm Force](https://www.brainstormforce.com) | [GPL v2](http://www.gnu.org/licenses/gpl-2.0.html) | [GitHub](https://github.com/brainstormforce/all-in-one-schemaorg-rich-snippets) | [WordPress.org](https://wordpress.org/plugins/all-in-one-schemaorg-rich-snippets/) | [Schema Pro](https://wpschema.com/)
1+
Schema - All In One Schema Rich Snippets v1.7.7 | By [Brainstorm Force](https://www.brainstormforce.com) | [GPL v2](http://www.gnu.org/licenses/gpl-2.0.html) | [GitHub](https://github.com/brainstormforce/all-in-one-schemaorg-rich-snippets) | [WordPress.org](https://wordpress.org/plugins/all-in-one-schemaorg-rich-snippets/) | [Schema Pro](https://wpschema.com/)

index.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* Author: Brainstorm Force
66
* Author URI: https://www.brainstormforce.com
77
* Description: Welcome to the Schema - All In One Schema Rich Snippets! You can now easily add schema markup on various * pages and posts of your website. Implement schema types such as Review, Events, Recipes, Article, Products, Services * *etc.
8-
* Version: 1.7.6
8+
* Version: 1.7.7
99
* Text Domain: rich-snippets
1010
* License: GPL2
1111
*
@@ -81,7 +81,7 @@ public function define_constants() {
8181
define( 'AIOSRS_PRO_BASE', plugin_basename( AIOSRS_PRO_FILE ) );
8282
define( 'AIOSRS_PRO_DIR', plugin_dir_path( AIOSRS_PRO_FILE ) );
8383
define( 'AIOSRS_PRO_URI', plugins_url( '/', AIOSRS_PRO_FILE ) );
84-
define( 'AIOSRS_PRO_VER', '1.7.6' );
84+
define( 'AIOSRS_PRO_VER', '1.7.7' );
8585
}
8686

8787
/**
@@ -482,7 +482,7 @@ public function aiosrs_maybe_migrate_analytics_tracking() {
482482
'id' => 'deactivation-survey-all-in-one-schemaorg-rich-snippets', // 'deactivation-survey-<your-plugin-slug>'
483483
'popup_logo' => esc_url( plugins_url( 'admin/images/icon_32.png', __FILE__ ) ),
484484
'plugin_slug' => 'all-in-one-schemaorg-rich-snippets',
485-
'plugin_version' => '1.7.6',
485+
'plugin_version' => '1.7.7',
486486
'popup_title' => 'Quick Feedback',
487487
'support_url' => 'https://wpschema.com/contact/',
488488
'popup_description' => 'If you have a moment, please share why you are deactivating All In One Schema Rich Snippets:',

languages/all-in-one-schemaorg-rich-snippets.pot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# This file is distributed under the GPL2.
33
msgid ""
44
msgstr ""
5-
"Project-Id-Version: Schema - All In One Schema Rich Snippets 1.7.6\n"
5+
"Project-Id-Version: Schema - All In One Schema Rich Snippets 1.7.7\n"
66
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/all-in-one-schemaorg-rich-snippets\n"
77
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
88
"Language-Team: LANGUAGE <LL@li.org>\n"

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "all-in-one-schemaorg-rich-snippets",
3-
"version": "1.7.6",
3+
"version": "1.7.7",
44
"main": "Gruntfile.js",
55
"author": "Brainstorm Force",
66
"devDependencies": {

0 commit comments

Comments
 (0)