Skip to content

Commit acfae3e

Browse files
committed
Release v1.0.1 with updated PyPI documentation and deployment setup
1 parent 0b473eb commit acfae3e

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# StepDistanceCalculator
22

3-
[![PyPI version](https://img.shields.io/badge/pypi-v1.0.0-blue.svg)](https://pypi.org/project/StepDistanceCalculator/)
3+
[![PyPI version](https://img.shields.io/badge/pypi-v1.0.1-blue.svg)](https://pypi.org/project/StepDistanceCalculator/)
44
[![Python Versions](https://img.shields.io/badge/python-3.8%20%7C%203.9%20%7C%203.10%20%7C%203.11%20%7C%203.12-blue)](https://pypi.org/project/StepDistanceCalculator/)
55
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
66

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "StepDistanceCalculator"
7-
version = "1.0.0"
7+
version = "1.0.1"
88
description = "A Python module that calculates walking step counts between places or cities based on total distance and average step length."
99
readme = "README.md"
1010
authors = [

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name="StepDistanceCalculator",
5-
version="1.0.0",
5+
version="1.0.1",
66
description="Calculate walking step counts between places or cities based on total distance and step length.",
77
long_description=open("README.md", encoding="utf-8").read(),
88
long_description_content_type="text/markdown",

stepdistance/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
plot_steps_bar,
3636
)
3737

38-
__version__ = "1.0.0"
38+
__version__ = "1.0.1"
3939
__author__ = "StepDistanceCalculator Team"
4040

4141
__all__ = [

0 commit comments

Comments
 (0)