Skip to content

Commit

Permalink
[CHG] Update plugin versions & changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
bugfloyd committed Aug 20, 2022
1 parent 5c9ab18 commit 220bc6e
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 18 deletions.
8 changes: 8 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
= 1.3.0 =
* New: BulkSMS gateway support
* New: Textlocal gateway support
* New: SabaNovin gateway support
* Tweak: Add native support for GatewayAPI & remove third-party dependency
* Tweak: Minor improvements and code refactoring
* Fix: Store and use GatewayAPI message IDs to match delivery reports

= 1.2.0 =
* New: New gateway! gatewayapi.com full support: Send SMS, choose sender, get delivery reports, receive SMS

Expand Down
7 changes: 2 additions & 5 deletions includes/class-texteller.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ final class Texteller
*/
protected static ?Texteller $instance = null;

public static string $version = "1.2.0";
public static string $version = "1.3.0";

/**
* Cloning is forbidden.
Expand All @@ -39,21 +39,19 @@ public function __clone()
/**
* Un-serializing instances of this class is forbidden.
*
* @since 2.1
*/
public function __wakeup()
{
_doing_it_wrong(
__FUNCTION__,
"Un-serializing instances of this class is forbidden.",
"3.0"
"0.1"
);
}

/**
* Constructor.
*
* @since 3.0
*/
private function __construct()
{
Expand Down Expand Up @@ -499,7 +497,6 @@ public static function autoload(string $class): void
* Instance
* Used to retrieve the instance to use on other files/plugins/themes.
*
* @since 3.0
* @return Texteller instance of the class
*/
public static function getInstance(): Texteller
Expand Down
19 changes: 8 additions & 11 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -162,16 +162,13 @@ Of course! More plugin integration will be available in future updates. Some not

== Changelog ==

= 1.2.0 =
* New: New gateway! gatewayapi.com full support: Send SMS, choose sender, get delivery reports, receive SMS

= 1.1.1 =
* Fix: Minor formatting issue in upgrade notices

= 1.1.0 =
* New: New gateway! Spryng.nl full support: Send SMS, choose originator, get delivery reports
* Tweak: Now the plugin is able to store additional data coming from gateways while sending messages
* Tweak: WooCommerce integration tested up to version 6.5.0
= 1.3.0 =
* New: BulkSMS gateway support
* New: Textlocal gateway support
* New: SabaNovin gateway support
* Tweak: Add native support for GatewayAPI & remove third-party dependency
* Tweak: Minor improvements and code refactoring
* Fix: Store and use GatewayAPI message IDs to match delivery reports

= 1.0 =
* New: Tested the plugin up to WordPress 6.0
Expand All @@ -193,5 +190,5 @@ Of course! More plugin integration will be available in future updates. Some not
* Fix: PHP notices while sending notifications when a gateway does not have extra data

## Upgrade Notice ##
### 1.2.0 ###
### 1.3.0 ###
If you have PHP version below 7.4, you can download plugin version 0.1.3 from bit.ly/3yJQRUv which supports PHP 7.1 and above
4 changes: 2 additions & 2 deletions texteller.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
* Plugin Name: Texteller
* Plugin URI: https://www.texteller.com/
Description: An all-in-one text message integration solution for WordPress and popular third-party plugins, supporting multiple SMS and messaging gateways.
* Version: 1.2.0
* Version: 1.3.0
* Author: Yashar Hosseinpour
* Text Domain: texteller
* Requires at least: 5.3
* Tested up to: 6.0
* Requires PHP: 7.4
* WC requires at least: 6.1
* WC tested up to: 6.5.0
* WC tested up to: 6.8.1
*/

namespace Texteller;
Expand Down

0 comments on commit 220bc6e

Please sign in to comment.