From 43b916016adf4521de2dc9c385fc68378cb179f2 Mon Sep 17 00:00:00 2001 From: Michael Larabel Date: Wed, 17 Mar 2021 05:14:27 -0500 Subject: [PATCH] Prep for 10.4 M1 --- ChangeLog | 3 ++- README.md | 2 +- documentation/man-pages/phoronix-test-suite.1 | 2 +- pts-core/pts-core.php | 8 ++++---- 4 files changed, 8 insertions(+), 7 deletions(-) diff --git a/ChangeLog b/ChangeLog index 7e66d5c1c1..53cdb0c4f1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,7 @@ PHORONIX TEST SUITE CHANGE-LOG -Phoronix Test Suite (Git) +Phoronix Test Suite 10.4.0 Milestone 1 +17 March 2021 pts-core: Optimize out sorting percentile values array excess times pts-core: Optimization to avoid re-parsing test profile definition multiple times diff --git a/README.md b/README.md index dbe0420638..975d73a3c3 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Phoronix Test Suite 10.2.2 +# Phoronix Test Suite 10.4.0m1 https://www.phoronix-test-suite.com/ The **Phoronix Test Suite** is the most comprehensive testing and benchmarking diff --git a/documentation/man-pages/phoronix-test-suite.1 b/documentation/man-pages/phoronix-test-suite.1 index ca462b7e6b..e3a96b8493 100644 --- a/documentation/man-pages/phoronix-test-suite.1 +++ b/documentation/man-pages/phoronix-test-suite.1 @@ -1,4 +1,4 @@ -.TH phoronix-test-suite 1 "www.phoronix-test-suite.com" "10.2.2" +.TH phoronix-test-suite 1 "www.phoronix-test-suite.com" "10.4.0m1" .SH NAME phoronix-test-suite \- The Phoronix Test Suite is an extensible open-source platform for performing testing and performance evaluation. .SH SYNOPSIS diff --git a/pts-core/pts-core.php b/pts-core/pts-core.php index a099f630db..0c583b9758 100644 --- a/pts-core/pts-core.php +++ b/pts-core/pts-core.php @@ -301,10 +301,10 @@ function pts_version_codenames() ); } -pts_define('PTS_VERSION', '10.2.2'); -pts_define('PTS_CORE_VERSION', 10220); -pts_define('PTS_RELEASE_DATE', '20210217'); -pts_define('PTS_CODENAME', 'Harstad'); +pts_define('PTS_VERSION', '10.4.0m1'); +pts_define('PTS_CORE_VERSION', 10310); +pts_define('PTS_RELEASE_DATE', '20210317'); +pts_define('PTS_CODENAME', 'Ibestad'); pts_define('PTS_IS_CLIENT', (defined('PTS_MODE') && strstr(PTS_MODE, 'CLIENT') !== false)); pts_define('PTS_IS_WEB_CLIENT', (defined('PTS_MODE') && PTS_MODE == 'WEB_CLIENT'));