From 2851e4d9443ad00c56e0705fedaa653be7702c1b Mon Sep 17 00:00:00 2001 From: "Sergey V. DUDANOV" <sergey.dudanov@gmail.com> Date: Tue, 16 Jul 2024 18:36:22 +0400 Subject: [PATCH] v0.2.20: movement direction enum change --- pyftms/client/properties/features.py | 4 ++-- pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pyftms/client/properties/features.py b/pyftms/client/properties/features.py index 52c5df6ad8..dff5341dd1 100644 --- a/pyftms/client/properties/features.py +++ b/pyftms/client/properties/features.py @@ -36,9 +36,9 @@ class MovementDirection(IntEnum, boundary=STRICT): Described in section **4.5.1.1 Flags Field**. """ - FORWARD = auto() + FORWARD = 0 """Move Forward.""" - BACKWARD = auto() + BACKWARD = 1 """Move Backward.""" diff --git a/pyproject.toml b/pyproject.toml index eed828d949..f349f5f039 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pyftms" -version = "0.2.19" +version = "0.2.20" description = "PyFTMS - Python Fitness Machine Service client library." authors = ["Sergey V. DUDANOV <sergey.dudanov@gmail.com>"] readme = "README.md"