Skip to content

Commit

Permalink
Merge pull request #44 from wpugph/wp581bump
Browse files Browse the repository at this point in the history
Wp581bump
  • Loading branch information
carl-alberto authored Oct 9, 2021
2 parents 7c0dafb + 5ba7598 commit 1618338
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
6 changes: 3 additions & 3 deletions easy-symlinks.php
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<?php
/**
* Plugin Name: Easy Symlinks
* Version: 1.0.1
* Version: 1.0.2
* Plugin URI: http://wordpress.org/plugins/easy-symlinks
* Description: Easy symlinking tool in WP. Best used for non-command line users. This can only track symlinks created within the application and excludes symlinks created from the filesystem and command line. Best used in Pantheon dev environments in SFTP mode.
* Author: Carl Alberto
* Author URI: https://carlalberto.code.blog/
* Requires at least: 4.9
* Tested up to: 5.3
* Tested up to: 5.8.1
*
* Text Domain: easy-symlinks
* Domain Path: /lang/
Expand All @@ -34,7 +34,7 @@
* @return object Easy_Symlinks
*/
function easy_symlinks() {
$instance = Easy_Symlinks::instance( __FILE__, '1.0.1' );
$instance = Easy_Symlinks::instance( __FILE__, '1.0.2' );

if ( is_null( $instance->settings ) ) {
$instance->settings = Easy_Symlinks_Settings::instance( $instance );
Expand Down
4 changes: 2 additions & 2 deletions includes/class-easy-symlinks.php
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ public function wp_admin_scripts() {
* @param string $file File constructor.
* @param string $version Plugin version.
*/
public function __construct( $file = '', $version = '1.0.1' ) {
public function __construct( $file = '', $version = '1.0.2' ) {
$this->version = $version;
$this->token = 'easy_symlinks';

Expand Down Expand Up @@ -303,7 +303,7 @@ public function __construct( $file = '', $version = '1.0.1' ) {
* @since 1.0.0
* @static
*/
public static function instance( $file = '', $version = '1.0.1' ) {
public static function instance( $file = '', $version = '1.0.2' ) {
if ( is_null( self::$instance ) ) {
self::$instance = new self( $file, $version );
}
Expand Down
8 changes: 6 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ Contributors: carl-alberto
Donate link: http://carlalberto.code.blog/
Tags: wordpress, plugin, symlink
Requires at least: 4.9
Tested up to: 5.3
Stable tag: 1.0.1
Tested up to: 5.8.1
Stable tag: 1.0.2
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand All @@ -30,6 +30,10 @@ Installing "Easy Symlinks" can be done either by searching for "Easy Symlinks" v

== Changelog ==

= 1.0.2 =
* 2021-10-9
* Version bump for 5.8.1 compatibility

= 1.0.1 =
* 2020-1-8
* Closed issues https://github.com/wpugph/WordPress-Easy-Symlinks/issues?q=is%3Aissue+milestone%3A1.0.1+is%3Aclosed
Expand Down

0 comments on commit 1618338

Please sign in to comment.