diff --git a/scripts/bump_major_version.php b/scripts/bump_major_version.php index bdfbebe..3d86a4d 100755 --- a/scripts/bump_major_version.php +++ b/scripts/bump_major_version.php @@ -17,3 +17,6 @@ foreach (array( $data = preg_replace($find, $replace, file_get_contents($filepath)); file_put_contents($filepath, $data); } + +$rightwards_arrow = json_decode('"\u2192"'); +echo 'Bump version: ' . $current_version . ' ' . $rightwards_arrow . ' ' . $new_version . "\n"; diff --git a/scripts/bump_minor_version.php b/scripts/bump_minor_version.php index 0994a38..bb75575 100755 --- a/scripts/bump_minor_version.php +++ b/scripts/bump_minor_version.php @@ -17,3 +17,6 @@ foreach (array( $data = preg_replace($find, $replace, file_get_contents($filepath)); file_put_contents($filepath, $data); } + +$rightwards_arrow = json_decode('"\u2192"'); +echo 'Bump version: ' . $current_version . ' ' . $rightwards_arrow . ' ' . $new_version . "\n"; diff --git a/scripts/bump_patch_version.php b/scripts/bump_patch_version.php index 2091172..18594e5 100755 --- a/scripts/bump_patch_version.php +++ b/scripts/bump_patch_version.php @@ -17,3 +17,6 @@ foreach (array( $data = preg_replace($find, $replace, file_get_contents($filepath)); file_put_contents($filepath, $data); } + +$rightwards_arrow = json_decode('"\u2192"'); +echo 'Bump version: ' . $current_version . ' ' . $rightwards_arrow . ' ' . $new_version . "\n";