Plugin Directory

Changeset 3343606


Ignore:
Timestamp:
08/12/2025 01:52:00 PM (8 months ago)
Author:
grocerslist
Message:

Minor updates to make Grocers List aware of current plugin version

Location:
grocerslist
Files:
219 added
6 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • grocerslist/trunk/README.md

    r3341811 r3343606  
    44Author: Grocers List, Engineering
    55Tested up to: 6.8
    6 Stable tag: 1.0.3
     6Stable tag: 1.0.4
    77Requires PHP: 7.0
    88License: GPLv3
     
    3636#### - 8/4/2025 - v1.0.3 - This change fixes a bug where bulk app links migration changes the Post's updated at field unintentionally.
    3737
     38#### - 8/11/2025 - v1.0.4 - Sends plugin version in header of validate-api-key requests
     39
    3840### Resources:
    3941
  • grocerslist/trunk/grocerslist.php

    r3341811 r3343606  
    77Requires PHP: 7.0
    88Tested up to: 6.8
    9 Version: 1.0.3
    10 Stable tag: 1.0.3
     9Version: 1.0.4
     10Stable tag: 1.0.4
    1111Author: Grocers List Engineering
    1212License: GPLv3
     
    1818if (!defined('ABSPATH')) exit;
    1919
    20 define('GROCERS_LIST_VERSION', '1.0.1');
     20define('GROCERS_LIST_VERSION', '1.0.4');
    2121define('GROCERS_LIST_PLUGIN_FILE', __FILE__);
    2222define('GROCERS_LIST_PLUGIN_DIR', __DIR__);
  • grocerslist/trunk/includes/Service/ApiClient.php

    r3341811 r3343606  
    5353            'headers' => [
    5454                'x-api-key' => $apiKey,
     55                'x-gl-plugin-version' => GROCERS_LIST_VERSION,
    5556            ],
    5657        ]);
  • grocerslist/trunk/vendor/composer/installed.php

    r3341811 r3343606  
    44        'pretty_version' => 'dev-master',
    55        'version' => 'dev-master',
    6         'reference' => '58068d894f4dad2b4fdf087c63fe0058a1591474',
     6        'reference' => '3aba29a9616e7983087a26f885859dc368633650',
    77        'type' => 'library',
    88        'install_path' => __DIR__ . '/../../',
     
    1414            'pretty_version' => 'dev-master',
    1515            'version' => 'dev-master',
    16             'reference' => '58068d894f4dad2b4fdf087c63fe0058a1591474',
     16            'reference' => '3aba29a9616e7983087a26f885859dc368633650',
    1717            'type' => 'library',
    1818            'install_path' => __DIR__ . '/../../',
Note: See TracChangeset for help on using the changeset viewer.