From c7497270af34c010d1fb835238f0212baece5aaa Mon Sep 17 00:00:00 2001 From: GetPsyched Date: Mon, 17 Jun 2024 14:33:05 +0400 Subject: [PATCH] release: 0.5.0 - A brand new shell when running the library to interface with CC devices directly - Add new get_commands method - Methods for each parameter code - Setup logging through the lib - Miscellaneous refactors and bug fixes --- charachorder/__init__.py | 2 +- docs/src/installation.md | 2 +- package.nix | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/charachorder/__init__.py b/charachorder/__init__.py index aced2a9..bf7fb48 100644 --- a/charachorder/__init__.py +++ b/charachorder/__init__.py @@ -13,7 +13,7 @@ __author__ = "GetPsyched" __license__ = "MIT" __copyright__ = "Copyright 2023-present GetPsyched" -__version__ = "0.4.3" +__version__ = "0.5.0" from .device import * from .errors import * diff --git a/docs/src/installation.md b/docs/src/installation.md index 7ca7c3c..9b704d0 100644 --- a/docs/src/installation.md +++ b/docs/src/installation.md @@ -37,7 +37,7 @@ Simply copy this derivation into your project and call it using `python3Packages buildPythonPackage { pname = "charachorder.py"; - version = "0.4.3"; + version = "0.5.0"; format = "setuptools"; disabled = pythonOlder "3.9"; diff --git a/package.nix b/package.nix index 7b78dc9..92d2a85 100644 --- a/package.nix +++ b/package.nix @@ -2,7 +2,7 @@ buildPythonPackage { pname = "charachorder.py"; - version = "0.4.3"; + version = "0.5.0"; format = "setuptools"; disabled = pythonOlder "3.9";