Plugin Directory

Changeset 2713967


Ignore:
Timestamp:
04/24/2022 01:48:37 PM (4 years ago)
Author:
fsheedy
Message:

Tagging version 3.0.1

Location:
etsy-shop
Files:
2 edited
4 copied

Legend:

Unmodified
Added
Removed
  • etsy-shop/tags/3.0.1/etsy-shop.php

    r2713839 r2713967  
    99Author: Frédéric Sheedy
    1010Text Domain: etsy-shop
    11 Version: 3.0
     11Version: 3.0.1
    1212*/
    1313
     
    3636 */
    3737
    38 define( 'ETSY_SHOP_VERSION',  '3.0' );
     38define( 'ETSY_SHOP_VERSION',  '3.0.1' );
    3939define( 'ETSY_SHOP_CACHE_PREFIX', 'etsy_shop_cache_' );
    4040
     
    169169                        $title,
    170170                        $result->state,
    171                         $result->price->amount,
     171                        $result->price->amount/$result->price->divisor,
    172172                        $result->price->currency_code,
    173173                        $result->quantity,
  • etsy-shop/tags/3.0.1/readme.txt

    r2713839 r2713967  
    55Tested up to: 5.9.3
    66Requires at least: 5.0
    7 Stable tag: 3.0
     7Stable tag: 3.0.1
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    8585
    8686== Changelog ==
     87
     88= 3.0.1 =
     89* Update price calculation to Etsy Open API v3
    8790
    8891= 3.0 =
  • etsy-shop/trunk/etsy-shop.php

    r2713839 r2713967  
    99Author: Frédéric Sheedy
    1010Text Domain: etsy-shop
    11 Version: 3.0
     11Version: 3.0.1
    1212*/
    1313
     
    3636 */
    3737
    38 define( 'ETSY_SHOP_VERSION',  '3.0' );
     38define( 'ETSY_SHOP_VERSION',  '3.0.1' );
    3939define( 'ETSY_SHOP_CACHE_PREFIX', 'etsy_shop_cache_' );
    4040
     
    169169                        $title,
    170170                        $result->state,
    171                         $result->price->amount,
     171                        $result->price->amount/$result->price->divisor,
    172172                        $result->price->currency_code,
    173173                        $result->quantity,
  • etsy-shop/trunk/readme.txt

    r2713839 r2713967  
    55Tested up to: 5.9.3
    66Requires at least: 5.0
    7 Stable tag: 3.0
     7Stable tag: 3.0.1
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    8585
    8686== Changelog ==
     87
     88= 3.0.1 =
     89* Update price calculation to Etsy Open API v3
    8790
    8891= 3.0 =
Note: See TracChangeset for help on using the changeset viewer.