Skip to content

Commit

Permalink
🚀 RELEASE: v2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
robertdevore committed Apr 16, 2022
1 parent ca98fee commit 1a2b537
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
7 changes: 6 additions & 1 deletion README.txt
Expand Up @@ -4,7 +4,7 @@ Donate link: https://deviodigital.com
Tags: documentation, document, knowledgebase, help, support, notes
Requires at least: 3.0.1
Tested up to: 5.9.2
Stable tag: 2.2.1
Stable tag: 2.3.0
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -54,6 +54,11 @@ Please [let us know](https://www.deviodigital.com/contact/) if there's a languag

== Changelog ==

= 2.3.0 =
* Added new Hindi translation in `languages/docupress-hi_IN.pot`
* Updated various security related issues found with [Codacy](https://codacy.com) throughout multiple files in the plugin
* General code cleanup throughout multiple files in the plugin

= 2.2.1 =
* Actually added the new French translation in `languages/docupress-fr_FR.pot`
* Actually added the new Italian translation in `languages/docupress-it_IT.pot`
Expand Down
6 changes: 3 additions & 3 deletions docupress.php
Expand Up @@ -11,7 +11,7 @@
* Plugin Name: DocuPress
* Plugin URI: https://www.robertdevore.com/docupress
* Description: Documentation simplified.
* Version: 2.2.1
* Version: 2.3.0
* Author: Devio Digital
* Author URI: https://deviodigital.com
* License: GPL-2.0+
Expand All @@ -22,11 +22,11 @@

// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
die;
wp_die();
}

// Current plugin version.
define( 'DOCUPRESS_VERSION', '2.2.1' );
define( 'DOCUPRESS_VERSION', '2.3.0' );

/**
* The code that runs during plugin activation.
Expand Down
2 changes: 1 addition & 1 deletion includes/class-docupress.php
Expand Up @@ -68,7 +68,7 @@ class DocuPress {
*/
public function __construct() {
$this->plugin_name = 'docupress';
$this->version = '2.2.1';
$this->version = '2.3.0';

if ( defined( 'DOCUPRESS_VERSION' ) ) {
$this->version = DOCUPRESS_VERSION;
Expand Down

0 comments on commit 1a2b537

Please sign in to comment.