Skip to content

Bump version to 1.1.4 in additional-javascript.php, package.json, pac… #10

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 2, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,9 @@ The JavaScript is added at the end of the `<head>` section of your site with a p

## Changelog

### 1.1.4
* Enhanced class loading for the GitHub plugin updater.

### 1.1.3
* Use generic [WordPress Plugin GitHub Updater](https://github.com/soderlind/wordpress-plugin-gitHub-updater?tab=readme-ov-file#wordpress-plugin-github-updater)

Expand Down
8 changes: 5 additions & 3 deletions additional-javascript.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* Plugin URI: https://github.com/soderlind/additional-javascript
* GitHub Plugin URI: https://github.com/soderlind/additional-javascript
* Description: Add additional JavaScript using the WordPress Customizer.
* Version: 1.1.3
* Version: 1.1.4
* Author: Per Soderlind
* Author URI: https://soderlind.no
* Text Domain: additional-javascript
Expand All @@ -25,13 +25,15 @@
die();
}

define( 'ADDITIONAL_JAVASCRIPT_VERSION', '1.1.1' );
define( 'ADDITIONAL_JAVASCRIPT_VERSION', '1.1.4' );
define( 'ADDITIONAL_JAVASCRIPT_FILE', __FILE__ );
define( 'ADDITIONAL_JAVASCRIPT_PATH', plugin_dir_path( ADDITIONAL_JAVASCRIPT_FILE ) );

require_once ADDITIONAL_JAVASCRIPT_PATH . 'vendor/autoload.php';
// Include the generic updater class
require_once dirname( __FILE__ ) . '/class-github-plugin-updater.php';
if ( ! class_exists( 'Soderlind\WordPress\GitHub_Plugin_Updater' ) ) {
require_once ADDITIONAL_JAVASCRIPT_PATH . 'class-github-plugin-updater.php';
}
// Initialize the updater with configuration.
$additional_javascript_updater = \Soderlind\WordPress\GitHub_Plugin_Updater::create_with_assets(
'https://github.com/soderlind/additional-javascript',
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "additional-javascript",
"version": "1.1.3",
"version": "1.1.4",
"description": "Add additional JavaScript using the WordPress Customizer.",
"keywords": [
"wordpress",
Expand Down
5 changes: 4 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Tags: javascript, customizer, code, custom code, js
Donate link: https://paypal.me/PerSoderlind
Requires at least: 6.5
Tested up to: 6.8
Stable tag: 1.1.3
Stable tag: 1.1.4
Requires PHP: 8.2
License: GPL-2.0+
License URI: http://www.gnu.org/licenses/gpl-2.0.txt
Expand Down Expand Up @@ -62,6 +62,9 @@ The JavaScript is added at the end of the `<head>` section of your site with a p

== Changelog ==

= 1.1.4 =
* Enhanced class loading for the GitHub plugin updater.

= 1.1.3 =
* Use generic [WordPress Plugin GitHub Updater](https://github.com/soderlind/wordpress-plugin-gitHub-updater?tab=readme-ov-file#wordpress-plugin-github-updater)

Expand Down
4 changes: 2 additions & 2 deletions vendor/composer/installed.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
'name' => 'soderlind/additional-javascript',
'pretty_version' => 'dev-main',
'version' => 'dev-main',
'reference' => 'f75e4faf5bf987362eca6385bb4c10d6dd9dbf9b',
'reference' => '22f23630ecfe19338e339f4c91e96d87e550ae88',
'type' => 'wordpress-plugin',
'install_path' => __DIR__ . '/../../',
'aliases' => array(),
Expand All @@ -13,7 +13,7 @@
'soderlind/additional-javascript' => array(
'pretty_version' => 'dev-main',
'version' => 'dev-main',
'reference' => 'f75e4faf5bf987362eca6385bb4c10d6dd9dbf9b',
'reference' => '22f23630ecfe19338e339f4c91e96d87e550ae88',
'type' => 'wordpress-plugin',
'install_path' => __DIR__ . '/../../',
'aliases' => array(),
Expand Down