Skip to content

Commit 60e70d4

Browse files
authored
Release
1 parent dfc638e commit 60e70d4

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
44
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
55

6-
## [Unreleased]
6+
## [1.8.1] - 2026-02-28
77

88
### Changed
99

GEMINI.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ This is a WordPress performance optimization plugin that removes unnecessary fea
88
## Plugin Details
99

1010
- **Name:** Simple WP Optimizer
11-
- **Version:** 1.8.0
11+
- **Version:** 1.8.1
1212
- **WordPress Compatibility:** 6.5+
1313
- **PHP Compatibility:** 7.4+
1414
- **License:** GPL-3.0-or-later

README.md

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

88
## Current Version
99

10-
[![Version](https://img.shields.io/badge/Version-1.8.0-orange.svg?logo=github)](https://github.com/EngineScript/simple-wp-optimizer/releases/download/v1.8.0/simple-wp-optimizer-1.8.0.zip)
10+
[![Version](https://img.shields.io/badge/Version-1.8.1-orange.svg?logo=github)](https://github.com/EngineScript/simple-wp-optimizer/releases/download/v1.8.1/simple-wp-optimizer-1.8.1.zip)
1111

1212
## Description
1313

languages/simple-wp-optimizer.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 GNU General Public License v2 or later.
33
msgid ""
44
msgstr ""
5-
"Project-Id-Version: Simple WP Optimizer 1.8.0\n"
5+
"Project-Id-Version: Simple WP Optimizer 1.8.1\n"
66
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/simple-wp-optimizer\n"
77
"POT-Creation-Date: 2025-01-23 00:00:00+00:00\n"
88
"MIME-Version: 1.0\n"

readme.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Contributors: enginescript
33
Tags: optimization, performance, cleanup
44
Requires at least: 6.5
55
Tested up to: 6.9
6-
Stable tag: 1.8.0
6+
Stable tag: 1.8.1
77
Requires PHP: 7.4
88
License: GPLv3 or later
99
License URI: https://www.gnu.org/licenses/gpl-2.0.html
@@ -43,7 +43,7 @@ No, the plugin has a simple interface where you can toggle features on and off.
4343

4444
== Changelog ==
4545

46-
= Unreleased =
46+
= 1.8.1 - 2026-02-28 =
4747
* **BUG FIX (Critical)**: Fixed whitespace inside form field `name` attributes that prevented all settings from being saved — browsers sent literal newlines/tabs as part of the field name so WordPress never received the data
4848
* **BUG FIX (Critical)**: Fixed inverted IP-validation logic that caused every preconnect/DNS-prefetch domain name to be incorrectly rejected when saving settings
4949
* **BUG FIX (Critical)**: Fixed `es_optimizer_clear_options_cache()` which was not actually clearing the static options cache

simple-wp-optimizer.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Plugin Name: Simple WP Optimizer
44
* Plugin URI: https://github.com/EngineScript/simple-wp-optimizer
55
* Description: Optimizes WordPress by removing unnecessary features and scripts to improve performance
6-
* Version: 1.8.0
6+
* Version: 1.8.1
77
* Author: EngineScript
88
* License: GPL-3.0-or-later
99
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
@@ -53,7 +53,7 @@
5353

5454
// Define plugin version.
5555
if ( ! defined( 'ES_WP_OPTIMIZER_VERSION' ) ) {
56-
define( 'ES_WP_OPTIMIZER_VERSION', '1.8.0' );
56+
define( 'ES_WP_OPTIMIZER_VERSION', '1.8.1' );
5757
}
5858

5959
/**

0 commit comments

Comments
 (0)