From ba373390006050679179bb2f635e88acb9befa90 Mon Sep 17 00:00:00 2001 From: Furechan Date: Sun, 13 Oct 2024 14:52:22 +0200 Subject: [PATCH] ... --- CHANGELOG.md | 3 +++ pyproject.toml | 2 +- tasks.py | 4 ++-- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ef1fa3a..b2c31a1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Change Log +## 0.0.13 +- Updated Pypi README + ## 0.0.12 - Added `DMI` indicator (`ADX` is now a single series indicator) - Added `ATRP` indicator (Average True Range Percentage) diff --git a/pyproject.toml b/pyproject.toml index e79be65..f551809 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "mplchart" -version = "0.0.12" +version = "0.0.14" requires-python = ">=3.9" readme = "output/README.md" license = { text = "MIT License" } diff --git a/tasks.py b/tasks.py index fbe0723..0dc5abd 100644 --- a/tasks.py +++ b/tasks.py @@ -68,5 +68,5 @@ def bump(c): version = version[:-1] + (version[-1]+1, ) version = ".".join(str(v) for v in version) print(f"Updating version to {version} ...") - buffer = print(re.sub(pattern, f"version = \"{version}\"\n", buffer, flags=re.VERBOSE | re.MULTILINE)) - pyproject.write_text(buffer) + output = re.sub(pattern, f"version = \"{version}\"\n", buffer, flags=re.VERBOSE | re.MULTILINE) + pyproject.write_text(output)