Skip to content

Commit 5bed6fc

Browse files
authored
Release
1 parent 90a98c8 commit 5bed6fc

File tree

5 files changed

+16
-16
lines changed

5 files changed

+16
-16
lines changed

CHANGELOG.md

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +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-
7-
## [1.5.10] - 2025-07-07
8-
### Maintenance
9-
- Updated changelog and version references across documentation files for new release
10-
### Documentation
11-
- Synced CHANGELOG.md and readme.txt as per project standards
12-
### Note
13-
- No code changes in this release; documentation and changelog only
14-
15-
## [Unreleased]
6+
## [1.5.11] - 2025-07-11
167
### Code Quality
178
- **WordPress Coding Standards**: Converted all code to use spaces instead of tabs for indentation
189
- **Code Style**: Fixed file comment header to use "/**" style instead of "/*" style
@@ -23,6 +14,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2314
- **Function Formatting**: Improved function parameter spacing and alignment
2415
- **Array Formatting**: Enhanced array formatting with proper alignment and trailing commas
2516

17+
## [1.5.10] - 2025-07-07
18+
### Maintenance
19+
- Updated changelog and version references across documentation files for new release
20+
### Documentation
21+
- Synced CHANGELOG.md and readme.txt as per project standards
22+
### Note
23+
- No code changes in this release; documentation and changelog only
24+
2625
## [1.5.9] - 2025-06-26
2726
### Updated
2827
- **Requirements**: Updated minimum WordPress version requirement to 6.5+ across all files for modern WordPress compatibility

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[![PHP Compatible](https://img.shields.io/badge/PHP-7.4%2B-purple.svg?logo=php)](https://www.php.net/)
66

77
## Current Version
8-
[![Version](https://img.shields.io/badge/Version-1.5.10-orange.svg?logo=github)](https://github.com/EngineScript/Simple-WP-Optimizer/releases/download/v1.5.10/simple-wp-optimizer-1.5.10.zip)
8+
[![Version](https://img.shields.io/badge/Version-1.5.11-orange.svg?logo=github)](https://github.com/EngineScript/Simple-WP-Optimizer/releases/download/v1.5.11/simple-wp-optimizer-1.5.11.zip)
99

1010
## Description
1111

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 same license as the Simple WP Optimizer plugin.
33
msgid ""
44
msgstr ""
5-
"Project-Id-Version: Simple WP Optimizer 1.5.10\n"
5+
"Project-Id-Version: Simple WP Optimizer 1.5.11\n"
66
"Report-Msgid-Bugs-To: https://github.com/EngineScript/Simple-WP-Optimizer/issues\n"
77
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
88
"Language-Team: LANGUAGE <[email protected]>\n"

readme.txt

Lines changed: 1 addition & 1 deletion
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.8
6-
Stable tag: 1.5.10
6+
Stable tag: 1.5.11
77
Requires PHP: 7.4
88
License: GPLv2 or later
99
License URI: https://www.gnu.org/licenses/gpl-2.0.html

simple-wp-optimizer.php

Lines changed: 4 additions & 3 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.5.10
6+
* Version: 1.5.11
77
* Author: EngineScript
88
* License: GPL v2 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.5.10' );
56+
define( 'ES_WP_OPTIMIZER_VERSION', '1.5.11' );
5757
}
5858

5959
/**
@@ -98,7 +98,8 @@ function es_optimizer_get_default_options() {
9898
'https://ajax.googleapis.com',
9999
'https://apis.google.com',
100100
'https://www.google-analytics.com',
101-
) ),
101+
)
102+
),
102103
'disable_jetpack_ads' => 1,
103104
);
104105
}

0 commit comments

Comments
 (0)