diff --git a/includes/class-tika-doc-pdf-indexer.php b/includes/class-tika-doc-pdf-indexer.php index 1ffd64b..435fe4d 100644 --- a/includes/class-tika-doc-pdf-indexer.php +++ b/includes/class-tika-doc-pdf-indexer.php @@ -312,7 +312,7 @@ public function enable_doc_cpt() { * @param string $file File constructor. * @param string $version Plugin version. */ - public function __construct( $file = '', $version = '1.0.0' ) { + public function __construct( $file = '', $version = '1.0.1' ) { $this->_version = $version; $this->_token = 'tika_doc_pdf_indexer'; diff --git a/readme.txt b/readme.txt index 2651809..b3d4eb4 100644 --- a/readme.txt +++ b/readme.txt @@ -3,7 +3,7 @@ Contributors: carl-alberto Tags: wordpress, plugin Requires at least: 4.8 Tested up to: 5.2.3 -Stable tag: 1.0.0 +Stable tag: 1.0.1 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html diff --git a/tika-doc-pdf-indexer.php b/tika-doc-pdf-indexer.php index 2272b66..2916554 100644 --- a/tika-doc-pdf-indexer.php +++ b/tika-doc-pdf-indexer.php @@ -1,7 +1,7 @@ <?php /** * Plugin Name: Tika Doc PDF indexer - * Version: 1.0.0 + * Version: 1.0.1 * Plugin URI: https://wordpress.org/plugins/tika-odc-pdf-indexer/ * Description: This indexes your Docs or PDFs into meta datas when uploaded. Based on Apache Tika. * Author: Carl Alberto @@ -53,7 +53,7 @@ * @return object Tika_Doc_PDF_Indexer */ function tika_doc_pdf_indexer() { - $instance = Tika_Doc_PDF_Indexer::instance( __FILE__, '1.0.0' ); + $instance = Tika_Doc_PDF_Indexer::instance( __FILE__, '1.0.1' ); if ( is_null( $instance->settings ) ) { $instance->settings = Tika_Doc_PDF_Indexer_Settings::instance( $instance );