Skip to content

Commit

Permalink
Release 9.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
workhorsy committed Oct 25, 2022
1 parent 45b5144 commit 4824ec0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion ChangeLog
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

VERSION = 8.0.0
VERSION = 9.0.0

.PHONY: all
all:
Expand Down
2 changes: 1 addition & 1 deletion cpuinfo/cpuinfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

setup(
name = "py-cpuinfo",
version = "8.0.0",
version = "9.0.0",
author = "Matthew Brennan Jones",
author_email = "[email protected]",
description = "Get CPU info with pure Python",
Expand Down

0 comments on commit 4824ec0

Please sign in to comment.