This commit is contained in:
Florent 2026-02-15 07:39:16 -04:00
parent cf630bbf20
commit 5bc8379b52
3 changed files with 5 additions and 5 deletions

View file

@ -17,12 +17,12 @@
meshcore = python3Packages.buildPythonPackage rec {
pname = "meshcore";
version = "2.2.8";
version = "2.2.10";
pyproject = true;
src = python3Packages.fetchPypi {
inherit pname version;
sha256 = "sha256-Xm79VNSgZTp0Jobop59ZbaHmKXV9NmNrxnEmLTVBKb0=";
sha256 = "sha256-6o+mEsPXEY2baeRWmDhJQMC2CqgNWnsgRYE2q74XbC8=";
};
build-system = [ python3Packages.hatchling ];

View file

@ -4,7 +4,7 @@ build-backend = "hatchling.build"
[project]
name = "meshcore-cli"
version = "1.4.1"
version = "1.4.2"
authors = [
{ name="Florent de Lamotte", email="florent@frizoncorrea.fr" },
]
@ -17,7 +17,7 @@ classifiers = [
]
license = "MIT"
license-files = ["LICEN[CS]E*"]
dependencies = [ "meshcore >= 2.2.8",
dependencies = [ "meshcore >= 2.2.10",
"bleak >= 0.22",
"prompt_toolkit >= 3.0.50",
"requests >= 2.28.0",

View file

@ -37,7 +37,7 @@ import re
from meshcore import MeshCore, EventType, logger
# Version
VERSION = "v1.4.0"
VERSION = "v1.4.2"
# default ble address is stored in a config file
MCCLI_CONFIG_DIR = str(Path.home()) + "/.config/meshcore/"