From 14a9ce643e82fab1987d83fe4ceaef27c07c2fa7 Mon Sep 17 00:00:00 2001 From: Qubitium-ModelCloud Date: Fri, 20 Dec 2024 11:08:20 +0800 Subject: [PATCH] prepare for 0.3.3 patch release (#64) * prepare for 0.3.3 patch release * Update README.md --- README.md | 1 + setup.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a57a0b2..f1c9780 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,7 @@ Self-contained Python lib with zero-dependencies that give you a unified `device

## News +* 12/20/2024 [0.3.3](https://github.com/ModelCloud/Device-SMI/releases/tag/v0.3.3) Patch fix for Windows install compatibility. * 12/05/2024 [0.3.2](https://github.com/ModelCloud/Device-SMI/releases/tag/v0.3.2) Added Windows `WSL` support. * 12/03/2024 [0.3.1](https://github.com/ModelCloud/Device-SMI/releases/tag/v0.3.1) Added `CPUDevice` compat for Windows. * 12/02/2024 [0.3.0](https://github.com/ModelCloud/Device-SMI/releases/tag/v0.3.0) Added `OSDevice`.[`name`, `version`, `kernel`, `arch`] for Linux/MacOS/Windows/FreeBSD/Solaris. Added `cpu.`[`count`, `cores`, `threads`] properties. Bug fix for gpu device index. diff --git a/setup.py b/setup.py index 25be9ba..bd88bcc 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import setup, find_packages from pathlib import Path -__version__ = "0.3.3-dev" +__version__ = "0.3.3" setup( name="device-smi",