Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
furechan committed Oct 13, 2024
1 parent e2b4d69 commit ba37339
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
Expand Down
4 changes: 2 additions & 2 deletions tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

0 comments on commit ba37339

Please sign in to comment.