Skip to content

Commit 76a1169

Browse files
chore: bump version to 2.2.1 for release
1 parent c8e2a30 commit 76a1169

37 files changed

+484
-39
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [2.2.1] - 2026-03-02
11+
12+
### Fixed
13+
14+
- **Release Build**: Fixed missing assets from Composer packages in release ZIP
15+
- Settings Hub CSS (`settings-hub.css`) now included in build
16+
- GitHub Updater JS (`check-updates.js`) now included in build
17+
- Updated build script to preserve `assets/` directories in SilverAssist packages
18+
1019
## [2.2.0] - 2026-03-02
1120

1221
### Changed

assets/css/dashboard-widget.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*
66
* @package SilverAssist\ContactFormToAPI
77
* @since 1.2.0
8-
* @version 2.2.0
8+
* @version 2.2.1
99
* @author Silver Assist
1010
*/
1111

assets/css/settings-page.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* @package ContactFormToAPI
99
* @since 1.1.1
1010
* @author Silver Assist
11-
* @version 2.2.0
11+
* @version 2.2.1
1212
* @license Polyform-Noncommercial-1.0.0
1313
*/
1414

assets/js/migration.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* @package SilverAssist\ContactFormToAPI
88
* @subpackage Assets
99
* @since 1.3.4
10-
* @version 2.2.0
10+
* @version 2.2.1
1111
* @author Silver Assist
1212
*/
1313

assets/js/settings-page.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*
66
* @package SilverAssist\ContactFormToAPI
77
* @since 1.2.0
8-
* @version 2.2.0
8+
* @version 2.2.1
99
*/
1010

1111
(function ($) {

contact-form-to-api.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66
* @package SilverAssist\ContactFormToAPI
77
* @since 1.0.0
88
* @author Silver Assist
9-
* @version 2.2.0
9+
* @version 2.2.1
1010
* @license Polyform-Noncommercial-1.0.0
1111
*
1212
* @wordpress-plugin
1313
* Plugin Name: CF7 to API
1414
* Plugin URI: https://github.com/SilverAssist/contact-form-to-api
1515
* Description: Extend Contact Form 7 functionality by connecting forms to external APIs. Send form submissions to custom API endpoints with advanced configuration options.
16-
* Version: 2.2.0
16+
* Version: 2.2.1
1717
* Requires at least: 6.5
1818
* Requires PHP: 8.2
1919
* Author: Silver Assist
@@ -31,7 +31,7 @@
3131
defined( 'ABSPATH' ) || exit;
3232

3333
// Define plugin constants.
34-
define( 'CF7_API_VERSION', '2.2.0' );
34+
define( 'CF7_API_VERSION', '2.2.1' );
3535
define( 'CF7_API_FILE', __FILE__ );
3636
define( 'CF7_API_DIR', plugin_dir_path( __FILE__ ) );
3737
define( 'CF7_API_URL', plugin_dir_url( __FILE__ ) );

includes/Admin/Loader.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* @package SilverAssist\ContactFormToAPI
88
* @subpackage Admin
99
* @since 1.1.0
10-
* @version 2.2.0
10+
* @version 2.2.1
1111
* @author Silver Assist
1212
*/
1313

includes/Admin/SettingsPage.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* @package SilverAssist\ContactFormToAPI
99
* @subpackage Admin
1010
* @since 1.1.0
11-
* @version 2.2.0
11+
* @version 2.2.1
1212
* @author Silver Assist
1313
*/
1414

includes/Config/Settings.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* @package SilverAssist\ContactFormToAPI
99
* @subpackage Config
1010
* @since 1.2.0
11-
* @version 2.2.0
11+
* @version 2.2.1
1212
* @author Silver Assist
1313
*/
1414

includes/Controller/Admin/LogsController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* @package SilverAssist\ContactFormToAPI
99
* @subpackage Controller\Admin
1010
* @since 1.1.0
11-
* @version 2.2.0
11+
* @version 2.2.1
1212
* @author Silver Assist
1313
*/
1414

0 commit comments

Comments
 (0)