Plugin Directory

Changeset 2363079


Ignore:
Timestamp:
08/17/2020 01:30:29 PM (5 years ago)
Author:
aware
Message:

Update to version 1.2.5 from GitHub

Location:
courier-notices
Files:
12 edited
1 copied

Legend:

Unmodified
Added
Removed
  • courier-notices/tags/1.2.5/CHANGELOG.md

    r2348472 r2363079  
    11# Changelog #
     2
     3## 1.2.5 ##
     4* Updated - Options namespace
    25
    36## 1.2.4 ##
  • courier-notices/tags/1.2.5/composer.json

    r2348472 r2363079  
    33  "description": "Courier Notification for WordPress",
    44  "homepage": "https://github.com/linchpin/courier",
    5   "version": "1.2.4",
     5  "version": "1.2.5",
    66  "authors": [
    77    {
  • courier-notices/tags/1.2.5/courier-notices.php

    r2348472 r2363079  
    44 * Plugin URI:  https://wordpress.org/plugins/courier-notices
    55 * Description: A way to display, manage, and control front end notifications for your WordPress install.
    6  * Version:     1.2.4
     6 * Version:     1.2.5
    77 * Author:      Linchpin
    88 * Author URI:  https://linchpin.com
     
    2323
    2424if ( ! defined( 'COURIER_NOTICES_VERSION' ) ) {
    25     define( 'COURIER_NOTICES_VERSION', '1.2.4' );
     25    define( 'COURIER_NOTICES_VERSION', '1.2.5' );
    2626}
    2727
    2828if ( ! defined( 'COURIER_NOTICES_RELEASE_DATE' ) ) {
    29     define( 'COURIER_NOTICES_RELEASE_DATE', '07/29/2020' );
     29    define( 'COURIER_NOTICES_RELEASE_DATE', '08/17/2020' );
    3030}
    3131
  • courier-notices/tags/1.2.5/package.json

    r2348472 r2363079  
    11{
    22  "name": "courier-notices",
    3   "version": "1.2.4",
     3  "version": "1.2.5",
    44  "description": "A way to display, manage, and control front end notifications for users, globally or individually, in the header,footer, by shortcode or by page.",
    55  "main": "gulpfile.babel.js",
  • courier-notices/tags/1.2.5/readme.txt

    r2348472 r2363079  
    44Requires at least: 5.0
    55Tested up to: 5.3.2
    6 Stable tag: 1.2.4
     6Stable tag: 1.2.5
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    3535
    3636== Changelog ==
     37
     38= 1.2.5 =
     39* Updated - Options namespace
    3740
    3841= 1.2.4 =
  • courier-notices/tags/1.2.5/src/Controller/Upgrade.php

    r2344125 r2363079  
    110110
    111111            $plugin_options['plugin_version'] = COURIER_NOTICES_VERSION;
    112             update_option( 'courier_notice_options', $plugin_options );
     112            update_option( 'courier_notices_options', $plugin_options );
    113113        }
    114114    }
  • courier-notices/trunk/CHANGELOG.md

    r2348472 r2363079  
    11# Changelog #
     2
     3## 1.2.5 ##
     4* Updated - Options namespace
    25
    36## 1.2.4 ##
  • courier-notices/trunk/composer.json

    r2348472 r2363079  
    33  "description": "Courier Notification for WordPress",
    44  "homepage": "https://github.com/linchpin/courier",
    5   "version": "1.2.4",
     5  "version": "1.2.5",
    66  "authors": [
    77    {
  • courier-notices/trunk/courier-notices.php

    r2348472 r2363079  
    44 * Plugin URI:  https://wordpress.org/plugins/courier-notices
    55 * Description: A way to display, manage, and control front end notifications for your WordPress install.
    6  * Version:     1.2.4
     6 * Version:     1.2.5
    77 * Author:      Linchpin
    88 * Author URI:  https://linchpin.com
     
    2323
    2424if ( ! defined( 'COURIER_NOTICES_VERSION' ) ) {
    25     define( 'COURIER_NOTICES_VERSION', '1.2.4' );
     25    define( 'COURIER_NOTICES_VERSION', '1.2.5' );
    2626}
    2727
    2828if ( ! defined( 'COURIER_NOTICES_RELEASE_DATE' ) ) {
    29     define( 'COURIER_NOTICES_RELEASE_DATE', '07/29/2020' );
     29    define( 'COURIER_NOTICES_RELEASE_DATE', '08/17/2020' );
    3030}
    3131
  • courier-notices/trunk/package.json

    r2348472 r2363079  
    11{
    22  "name": "courier-notices",
    3   "version": "1.2.4",
     3  "version": "1.2.5",
    44  "description": "A way to display, manage, and control front end notifications for users, globally or individually, in the header,footer, by shortcode or by page.",
    55  "main": "gulpfile.babel.js",
  • courier-notices/trunk/readme.txt

    r2348472 r2363079  
    44Requires at least: 5.0
    55Tested up to: 5.3.2
    6 Stable tag: 1.2.4
     6Stable tag: 1.2.5
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    3535
    3636== Changelog ==
     37
     38= 1.2.5 =
     39* Updated - Options namespace
    3740
    3841= 1.2.4 =
  • courier-notices/trunk/src/Controller/Upgrade.php

    r2344125 r2363079  
    110110
    111111            $plugin_options['plugin_version'] = COURIER_NOTICES_VERSION;
    112             update_option( 'courier_notice_options', $plugin_options );
     112            update_option( 'courier_notices_options', $plugin_options );
    113113        }
    114114    }
Note: See TracChangeset for help on using the changeset viewer.