diff --git a/flake.nix b/flake.nix index a303f7e..27d3610 100644 --- a/flake.nix +++ b/flake.nix @@ -17,12 +17,12 @@ meshcore = python3Packages.buildPythonPackage rec { pname = "meshcore"; - version = "2.2.31"; + version = "2.3.0"; pyproject = true; src = python3Packages.fetchPypi { inherit pname version; - sha256 = "sha256-Z0FkdOY9Kv/y2fPXyH266CaWIWLeHwgC+yqSRLZxog8="; + sha256 = "sha256-7Vo1l2qnh04pD8urIZjC5onws1aCULYK7FLmueO9K3s="; }; build-system = [ python3Packages.hatchling ]; diff --git a/pyproject.toml b/pyproject.toml index 956ac5f..6bb6ed7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "meshcore-cli" -version = "1.4.12" +version = "1.5.0" 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.31", +dependencies = [ "meshcore >= 2.3.0", "bleak >= 0.22", "prompt_toolkit >= 3.0.50", "requests >= 2.28.0" ] diff --git a/src/meshcore_cli/meshcore_cli.py b/src/meshcore_cli/meshcore_cli.py index 1d9232a..cf46105 100644 --- a/src/meshcore_cli/meshcore_cli.py +++ b/src/meshcore_cli/meshcore_cli.py @@ -35,8 +35,7 @@ import re from meshcore import MeshCore, EventType, logger # Version -VERSION = "v1.4.12" - +VERSION = "v1.5.0" # default ble address is stored in a config file MCCLI_CONFIG_DIR = str(Path.home()) + "/.config/meshcore/"