Skip to content

Commit

Permalink
🚀 RELEASE: v2.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
robertdevore committed Jan 9, 2021
1 parent db27bbd commit 463879d
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 8 deletions.
13 changes: 11 additions & 2 deletions 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.6
Stable tag: 2.2
Stable tag: 2.2.1
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -34,8 +34,10 @@ Currently, **DocuPress** comes prepackaged with the following translations:

* English
* Spanish
* French
* Italian

Please [let us know](https://www.deviodigital.com/contact/) if there's a language you'd like to see **DocuPress* translated to next.
Please [let us know](https://www.deviodigital.com/contact/) if there's a language you'd like to see **DocuPress** translated to next.

== Installation ==

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

== Changelog ==

= 2.2.1 =
* Actually added the new French translation in `languages/docupress-es_ES.pot`
* Actually added the new Italian translation in `languages/docupress-es_ES.pot`
* Updated text strings for localization in `languages/docupress.pot`
* Updated various styles in `public/css/docupress-public.css`
* General code cleanup throughout multiple files in the plugin

= 2.2 =
* Added new Spanish translation in `languages/docupress-es_ES.pot`
* Added new French translation in `languages/docupress-fr_FR.pot`
Expand Down
8 changes: 3 additions & 5 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
* Version: 2.2.1
* Author: Devio Digital
* Author URI: https://deviodigital.com
* License: GPL-2.0+
Expand All @@ -25,10 +25,8 @@
die;
}

/**
* Current plugin version.
*/
define( 'DOCUPRESS_VERSION', '2.2' );
// Current plugin version.
define( 'DOCUPRESS_VERSION', '2.1' );

/**
* 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';
$this->version = '2.2.1';

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

0 comments on commit 463879d

Please sign in to comment.