Skip to content

Commit 34c991e

Browse files
authored
Release
1 parent 26ebcb6 commit 34c991e

File tree

3 files changed

+39
-3
lines changed

3 files changed

+39
-3
lines changed

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,28 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [1.0.3] - 2025-07-25
11+
12+
### Fixed
13+
- **Code Standards:**
14+
- Fixed string concatenation issues by removing unnecessary concatenation operators
15+
- Corrected variable alignment to follow WordPress coding standards
16+
- Fixed line ending characters from CRLF to LF for consistency
17+
- Resolved PHPStan errors by updating function return types and class references
18+
- Added proper bootstrap configuration for PHPStan analysis
19+
20+
### Changed
21+
- **File Structure:**
22+
- Moved main class to `class-optimizations-ace-mc.php` following WordPress naming conventions
23+
- Updated main plugin file to include class file properly
24+
- Improved code organization and maintainability
25+
26+
### Added
27+
- **Development Tools:**
28+
- Added `.distignore` file for proper WordPress.org deployment
29+
- Enhanced PHPStan configuration with proper bootstrap files
30+
- Improved workflow compatibility testing
31+
1032
## [1.0.2] - 2025-07-16
1133

1234
### Fixed

optimizations-ace-mc.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Plugin Name: Optimizations ACE MC
44
* Plugin URI: https://github.com/PDowney/optimizations-ace-mc
55
* Description: A lightweight WordPress optimization plugin with pre-configured performance enhancements for WooCommerce, WP Store Locator, and WordPress admin.
6-
* Version: 1.0.2
6+
* Version: 1.0.3
77
* Author: PDowney
88
* Author URI: https://github.com/PDowney
99
* License: GPL v3 or later
@@ -23,7 +23,7 @@
2323
}
2424

2525
// Define plugin constants.
26-
define( 'OPTIMIZATIONS_ACE_MC_VERSION', '1.0.2' );
26+
define( 'OPTIMIZATIONS_ACE_MC_VERSION', '1.0.3' );
2727
define( 'OPTIMIZATIONS_ACE_MC_PLUGIN_FILE', __FILE__ );
2828
define( 'OPTIMIZATIONS_ACE_MC_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
2929
define( 'OPTIMIZATIONS_ACE_MC_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );

readme.txt

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Tags: optimization, performance, wp-optimizer, speed, seo
44
Requires at least: 6.5
55
Tested up to: 6.8
66
Requires PHP: 7.4
7-
Stable tag: 1.0.2
7+
Stable tag: 1.0.3
88
License: GPLv3 or later
99
License URI: https://www.gnu.org/licenses/gpl-3.0.html
1010

@@ -49,6 +49,20 @@ Yes, this plugin focuses on basic optimizations and should work alongside other
4949

5050
== Changelog ==
5151

52+
= 1.0.3 - 2025-07-25 =
53+
* Fixed: Code standards compliance - string concatenation issues
54+
* Fixed: Variable alignment to follow WordPress coding standards
55+
* Fixed: Line ending characters from CRLF to LF for consistency
56+
* Fixed: PHPStan errors by updating function return types and class references
57+
* Changed: Moved main class to proper WordPress naming convention file structure
58+
* Added: Enhanced PHPStan configuration and development tools
59+
60+
= 1.0.2 - 2025-07-16 =
61+
* Enhanced WordPress compatibility testing
62+
* Improved automated code quality checks
63+
* Added comprehensive CI/CD workflow
64+
* Updated documentation and security guidelines
65+
5266
= 1.0.1 =
5367
* Fixed PHPStan compatibility issues with WP Store Locator functions
5468
* Improved PHPMD configuration for WordPress coding standards

0 commit comments

Comments
 (0)