From 4824ec0746be0dcee9bf9528dc8cdd0c1640cd9d Mon Sep 17 00:00:00 2001 From: Matthew Brennan Jones Date: Tue, 25 Oct 2022 12:15:13 -0700 Subject: [PATCH] Release 9.0.0 --- ChangeLog | 2 +- Makefile | 2 +- cpuinfo/cpuinfo.py | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index e327b56..4689cb2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,4 @@ -* Release 8.1.0 +10/25/2022 Release 9.0.0 * Fixed Bug #178: Changes to lscpu breaks parsing of cache info * Fixed Bug #152: CPU stepping, model, and family values are blank if 0 * Fixed Bug #177: Officially drop support for Python 2 diff --git a/Makefile b/Makefile index 888d133..310e673 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ -VERSION = 8.0.0 +VERSION = 9.0.0 .PHONY: all all: diff --git a/cpuinfo/cpuinfo.py b/cpuinfo/cpuinfo.py index 06026a7..ea2f90e 100644 --- a/cpuinfo/cpuinfo.py +++ b/cpuinfo/cpuinfo.py @@ -25,7 +25,7 @@ # TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE # SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -CPUINFO_VERSION = (8, 0, 0) +CPUINFO_VERSION = (9, 0, 0) CPUINFO_VERSION_STRING = '.'.join([str(n) for n in CPUINFO_VERSION]) import os, sys diff --git a/setup.py b/setup.py index f83a14d..9b89533 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ setup( name = "py-cpuinfo", - version = "8.0.0", + version = "9.0.0", author = "Matthew Brennan Jones", author_email = "matthew.brennan.jones@gmail.com", description = "Get CPU info with pure Python",