Skip to content

Commit

Permalink
fix bug in loracfg proto
Browse files Browse the repository at this point in the history
  • Loading branch information
mikey0000 committed Aug 27, 2024
1 parent 7901c8e commit 594eba8
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion pymammotion/proto/mctrl_sys.proto
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ message LoraCfgRsp {
int32 result = 1;
int32 op = 2;
string cfg = 3;
string fac_cfg = 4;
bytes fac_cfg = 4;
}

message mod_fw_info {
Expand Down
2 changes: 1 addition & 1 deletion pymammotion/proto/mctrl_sys.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pymammotion/proto/mctrl_sys_pb2.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ class LoraCfgRsp(_message.Message):
OP_FIELD_NUMBER: _ClassVar[int]
RESULT_FIELD_NUMBER: _ClassVar[int]
cfg: str
fac_cfg: str
fac_cfg: bytes
op: int
result: int
def __init__(self, result: _Optional[int] = ..., op: _Optional[int] = ..., cfg: _Optional[str] = ..., fac_cfg: _Optional[str] = ...) -> None: ...
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[project]
name = "pymammotion"
version = "0.2.13"
version = "0.2.15"

[tool.poetry]
name = "pymammotion"
version = "0.2.13"
version = "0.2.15"
license = "GNU-3.0"
description = ""
readme = "README.md"
Expand Down Expand Up @@ -53,7 +53,7 @@ mypy = "^1.10.0"
pre-commit = "^3.7.1"

[tool.bumpver]
current_version = "0.2.13"
current_version = "0.2.15"
version_pattern = "MAJOR.MINOR.PATCH"
commit_message = "Bump version {old_version} -> {new_version}"
commit = true
Expand Down

0 comments on commit 594eba8

Please sign in to comment.