Plugin Directory

Changeset 3265309


Ignore:
Timestamp:
04/01/2025 08:06:24 PM (12 months ago)
Author:
PeterBooker
Message:

tagging version 1.2.2

Location:
prompress
Files:
5 edited
20 copied

Legend:

Unmodified
Added
Removed
  • prompress/tags/1.2.2/README.md

    r3161067 r3265309  
    33PromPress is a WordPress plugin which allows you to monitor your install with Prometheus.
    44
    5 *Note: This is early development so the metrics and what they track may change significantly.*
     5Please create an issue with ideas for new metrics or problems with existing metrics.
    66
    77## Dependencies
  • prompress/tags/1.2.2/README.txt

    r3255044 r3265309  
    44Requires at least: 6.4
    55Tested up to: 6.7.2
    6 Stable tag: 1.2.1
     6Stable tag: 1.2.2
    77Requires PHP: 8.1
    88License: GPLv3 or later
  • prompress/tags/1.2.2/inc/class-errors.php

    r3161067 r3265309  
    9494        switch ( $errno ) {
    9595            case \E_DEPRECATED:
     96            case \E_USER_DEPRECATED:
     97                $error_type = 'deprecation';
     98                break;
    9699            case \E_NOTICE:
    97100            case \E_USER_NOTICE:
  • prompress/tags/1.2.2/prompress.php

    r3255044 r3265309  
    44 * Plugin URI:        https://github.com/PeterBooker/prompress
    55 * Description:       Monitor your WordPress website with Prometheus.
    6  * Version:           1.2.1
     6 * Version:           1.2.2
    77 * Author:            Peter Booker
    88 * Author URI:        https://peterbooker.com
     
    2727}
    2828
    29 \define( 'PROMPRESS_VERSION', '1.2.1' );
     29\define( 'PROMPRESS_VERSION', '1.2.2' );
    3030\define( 'PROMPRESS_DIR', \plugin_dir_path( __FILE__ ) );
    3131\define( 'PROMPRESS_URL', \plugin_dir_url( __FILE__ ) );
  • prompress/trunk/README.md

    r3161067 r3265309  
    33PromPress is a WordPress plugin which allows you to monitor your install with Prometheus.
    44
    5 *Note: This is early development so the metrics and what they track may change significantly.*
     5Please create an issue with ideas for new metrics or problems with existing metrics.
    66
    77## Dependencies
  • prompress/trunk/README.txt

    r3255044 r3265309  
    44Requires at least: 6.4
    55Tested up to: 6.7.2
    6 Stable tag: 1.2.1
     6Stable tag: 1.2.2
    77Requires PHP: 8.1
    88License: GPLv3 or later
  • prompress/trunk/inc/class-errors.php

    r3161067 r3265309  
    9494        switch ( $errno ) {
    9595            case \E_DEPRECATED:
     96            case \E_USER_DEPRECATED:
     97                $error_type = 'deprecation';
     98                break;
    9699            case \E_NOTICE:
    97100            case \E_USER_NOTICE:
  • prompress/trunk/prompress.php

    r3255044 r3265309  
    44 * Plugin URI:        https://github.com/PeterBooker/prompress
    55 * Description:       Monitor your WordPress website with Prometheus.
    6  * Version:           1.2.1
     6 * Version:           1.2.2
    77 * Author:            Peter Booker
    88 * Author URI:        https://peterbooker.com
     
    2727}
    2828
    29 \define( 'PROMPRESS_VERSION', '1.2.1' );
     29\define( 'PROMPRESS_VERSION', '1.2.2' );
    3030\define( 'PROMPRESS_DIR', \plugin_dir_path( __FILE__ ) );
    3131\define( 'PROMPRESS_URL', \plugin_dir_url( __FILE__ ) );
Note: See TracChangeset for help on using the changeset viewer.