Skip to content

Commit 4e13514

Browse files
committed
Bump firmware version to 0.5.3
1 parent 568b3f5 commit 4e13514

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

release/COMMANDS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# CubeCellMeshCore v0.5.2 - Command Reference
1+
# CubeCellMeshCore v0.5.3 - Command Reference
22

33
Serial console at 115200 baud. Type `help` for command list.
44

sim/node.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -539,7 +539,7 @@ def process_command(self, cmd: str) -> str:
539539
elif command == "stats":
540540
return self._cmd_stats()
541541
elif command == "ver":
542-
return "sim-0.5.2"
542+
return "sim-0.5.3"
543543
elif command == "board":
544544
return "SIM-NODE"
545545
elif command == "clock" or (command == "time" and len(parts) == 1):
@@ -727,7 +727,7 @@ def process_command(self, cmd: str) -> str:
727727
elif command == "status":
728728
return f"{self.identity.name} {self.identity.hash:02X} (companion)"
729729
elif command == "ver":
730-
return "sim-0.5.2"
730+
return "sim-0.5.3"
731731
elif command == "board":
732732
return "SIM-NODE"
733733
elif command == "clock" or (command == "time" and len(parts) == 1):

src/main.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* Based on MeshCore protocol: https://github.com/meshcore-dev/MeshCore
99
*/
1010

11-
#define FIRMWARE_VERSION "0.5.2"
11+
#define FIRMWARE_VERSION "0.5.3"
1212

1313
//=============================================================================
1414
// Configuration

0 commit comments

Comments
 (0)