Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
jakubmikita committed Jun 9, 2018
1 parent 12ca536 commit 166befe
Show file tree
Hide file tree
Showing 15 changed files with 21 additions and 21 deletions.
4 changes: 2 additions & 2 deletions class/Abstracts/MergeTag.php
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ public function set_trigger( Interfaces\Triggerable $trigger ) {
/**
* Sets resolver function
*
* @since [Next]
* @since 5.2.2
* @param mixed $resolver Resolver, can be either a closure or array or string.
*/
public function set_resolver( $resolver ) {
Expand Down Expand Up @@ -249,7 +249,7 @@ public function is_hidden() {
/**
* Cleans the value
*
* @since [Next]
* @since 5.2.2
* @return void
*/
public function clean_value() {
Expand Down
2 changes: 1 addition & 1 deletion class/Abstracts/Trigger.php
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ private function resolve_fields() {
/**
* Cleans the merge tags.
*
* @since [Next]
* @since 5.2.2
* @return void
*/
private function clean_merge_tags() {
Expand Down
2 changes: 1 addition & 1 deletion class/Admin/Share.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class Share {
/**
* Share class constructor.
*
* @since [Next]
* @since 5.2.2
* @param View $view View class.
*/
public function __construct( View $view ) {
Expand Down
4 changes: 2 additions & 2 deletions class/Defaults/MergeTag/Taxonomy/TaxonomyName.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class TaxonomyName extends StringTag {
/**
* Merge tag constructor
*
* @since [Next]
* @since 5.2.2
* @param array $params merge tag configuration params.
*/
public function __construct( $params = array() ) {
Expand Down Expand Up @@ -65,7 +65,7 @@ public function check_requirements() {
/**
* Gets nice, translated taxonomy name
*
* @since [Next]
* @since 5.2.2
* @return string taxonomy nicename
*/
public function get_nicename() {
Expand Down
2 changes: 1 addition & 1 deletion class/Defaults/MergeTag/Taxonomy/TaxonomySlug.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class TaxonomySlug extends StringTag {
/**
* Merge tag constructor
*
* @since [Next]
* @since 5.2.2
* @param array $params merge tag configuration params.
*/
public function __construct( $params = array() ) {
Expand Down
2 changes: 1 addition & 1 deletion class/Defaults/MergeTag/Taxonomy/TermDescription.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class TermDescription extends StringTag {
/**
* Merge tag constructor
*
* @since [Next]
* @since 5.2.2
*/
public function __construct() {

Expand Down
2 changes: 1 addition & 1 deletion class/Defaults/MergeTag/Taxonomy/TermID.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class TermID extends IntegerTag {
/**
* Merge tag constructor
*
* @since [Next]
* @since 5.2.2
*/
public function __construct() {

Expand Down
2 changes: 1 addition & 1 deletion class/Defaults/MergeTag/Taxonomy/TermName.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class TermName extends StringTag {
/**
* Merge tag constructor
*
* @since [Next]
* @since 5.2.2
*/
public function __construct() {

Expand Down
2 changes: 1 addition & 1 deletion class/Defaults/MergeTag/Taxonomy/TermSlug.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class TermSlug extends StringTag {
/**
* Merge tag constructor
*
* @since [Next]
* @since 5.2.2
*/
public function __construct() {

Expand Down
2 changes: 1 addition & 1 deletion class/Defaults/MergeTag/User/UserPasswordResetLink.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class UserPasswordResetLink extends StringTag {
/**
* Merge tag constructor
*
* @since [Next]
* @since 5.2.2
*/
public function __construct() {

Expand Down
6 changes: 3 additions & 3 deletions class/Defaults/Trigger/Taxonomy/TermTrigger.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public function merge_tags() {
/**
* Gets nice, translated taxonomy name
*
* @since [Next]
* @since 5.2.2
* @return string taxonomy
*/
public function get_current_taxonomy_name() {
Expand All @@ -71,7 +71,7 @@ public function get_current_taxonomy_name() {
/**
* Gets nice, translated taxonomy name for taxonomy slug
*
* @since [Next]
* @since 5.2.2
* @param string $taxonomy taxonomy slug.
* @return string taxonomy
*/
Expand All @@ -82,7 +82,7 @@ public static function get_taxonomy_name( $taxonomy ) {
/**
* Gets nice, translated singular taxonomy name for taxonomy slug
*
* @since [Next]
* @since 5.2.2
* @param string $taxonomy taxonomy slug.
* @return string taxonomy
*/
Expand Down
4 changes: 2 additions & 2 deletions class/Integration/WordPress.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class WordPress {
*
* @filter wp_mail_from_name 1000
*
* @since [Next]
* @since 5.2.2
* @param string $from_name Default From Name.
* @return string
*/
Expand All @@ -34,7 +34,7 @@ public function filter_email_from_name( $from_name ) {
*
* @filter wp_mail_from 1000
*
* @since [Next]
* @since 5.2.2
* @param string $from_email Default From Email.
* @return string
*/
Expand Down
4 changes: 2 additions & 2 deletions inc/functions/general.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
/**
* Adds handlers for doc hooks to an object
*
* @since [Next]
* @since 5.2.2
* @param object $object Object to create the hooks.
* @return object
*/
Expand All @@ -21,7 +21,7 @@ function notification_add_doc_hooks( $object ) {
/**
* Checks if the story should be displayed.
*
* @since [Next]
* @since 5.2.2
* @return boolean
*/
function notification_display_story() {
Expand Down
2 changes: 1 addition & 1 deletion notification.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Description: Customisable email and webhook notifications with powerful developer friendly API for custom triggers and notifications. Send alerts easily.
* Author: BracketSpace
* Author URI: https://bracketspace.com
* Version: 5.2.1
* Version: 5.2.2
* License: GPL3
* Text Domain: notification
* Domain Path: /languages
Expand Down
2 changes: 1 addition & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Donate link: https://www.paypal.me/underDEV/
Tags: notification, notify, alert, email, mail, webhook, API, developer, framework
Requires at least: 4.6
Tested up to: 4.9.5
Stable tag: 5.2.1
Stable tag: 5.2.2
Requires PHP: 5.3
License: GPLv3
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Expand Down

0 comments on commit 166befe

Please sign in to comment.