Skip to content

Commit af791fe

Browse files
committed
update for v1.2.14
1 parent 626a018 commit af791fe

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

flake.nix

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@
1515

1616
meshcore = python3Packages.buildPythonPackage rec {
1717
pname = "meshcore";
18-
version = "2.1.19";
18+
version = "2.1.24";
1919
pyproject = true;
2020

2121
src = python3Packages.fetchPypi {
2222
inherit pname version;
23-
sha256 = "sha256-R11puo30ozFVqsIZcbNtg/NFukm8ahFzkMVqX4XEIe0=";
23+
sha256 = "sha256-CTn4HsVoGPij3HmHIts9Rta/iVsR8wH+CECV1vznBjQ=";
2424
};
2525

2626
build-system = [python3Packages.hatchling];
@@ -57,6 +57,7 @@
5757
python3Packages.prompt_toolkit
5858
python3Packages.pyserial
5959
python3Packages.requests
60+
python3Packages.pycryptodome
6061
];
6162

6263
doCheck = false;

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "meshcore-cli"
7-
version = "1.2.13"
7+
version = "1.2.14"
88
authors = [
99
{ name="Florent de Lamotte", email="[email protected]" },
1010
]

src/meshcore_cli/meshcore_cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
from meshcore import MeshCore, EventType, logger
3333

3434
# Version
35-
VERSION = "v1.2.13"
35+
VERSION = "v1.2.14"
3636

3737
# default ble address is stored in a config file
3838
MCCLI_CONFIG_DIR = str(Path.home()) + "/.config/meshcore/"

0 commit comments

Comments
 (0)