diff --git a/readme.txt b/readme.txt index 51333fc..de8c1d3 100644 --- a/readme.txt +++ b/readme.txt @@ -6,7 +6,7 @@ License URI: https://www.gnu.org/licenses/gpl-2.0.html Requires at least: 3.9 Tested up to: 5.8 Requires PHP: 5.4 -Stable tag: 8.0.1 +Stable tag: 8.0.2 Manage your courses and publications with teachPress @@ -127,6 +127,11 @@ Please note the [teachPress 6.0 Upgrade Information](https://mtrv.wordpress.com/ == Changelog == += 8.0.2 (31.08.2021) = +* Changed: Don't longer use full table select for count queries in TP_Publications::get_publications() +* Bugfix: year field was not used fo bibtex import if date field was missing +* Bugfix: Optimize bibtex key generation within unique bibtex key check + = 8.0.1 (26.08.2021) = * New: [tpcloud, tplist, tpsearch]: "plain" option added for "show_tags_as" parameter. This display tags for each publications without links and filter diff --git a/teachpress.php b/teachpress.php index 84d8976..5f79431 100644 --- a/teachpress.php +++ b/teachpress.php @@ -5,7 +5,7 @@ * Description: With teachPress you can easy manage courses, enrollments and publications. * Author: Michael Winkler * Author URI: http://mtrv.wordpress.com/ - * Version: 8.0.1 + * Version: 8.0.2 * Requires at least: 3.9 * Text Domain: teachpress * Domain Path: /languages @@ -236,7 +236,7 @@ function tp_add_menu_settings() { * @return string */ function get_tp_version() { - return '8.0.1'; + return '8.0.2'; } /**