diff --git a/CHANGELOG.md b/CHANGELOG.md index b5c4773..7c1432d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.1.2] - 2023-08-17 +### Changed +- Changed function arg names again for testing version bump + ## [0.1.1] - 2023-08-17 ### Changed - Changed function arg names for testing version bump @@ -11,6 +15,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ### Added - Basic skeleton of the package and tested it - +[0.1.2]: https://pypi.org/manage/project/capfinder/release/0.1.2/ [0.1.1]: https://pypi.org/manage/project/capfinder/release/0.1.1/ [0.1.0]: https://pypi.org/manage/project/capfinder/release/0.1.0/ diff --git a/src/capfinder/add.py b/src/capfinder/add.py index 42655d0..54d9cfa 100644 --- a/src/capfinder/add.py +++ b/src/capfinder/add.py @@ -1,12 +1,12 @@ -def add(x: int, y: int, z: int) -> int: +def add(a: int, y: int, z: int) -> int: """ Add three numbers together - param x: first number + param a: first number param y: second number param z: third number - return: sum of x, y, and z + return: sum of a, y, and z """ - return x + y + z + return a + y + z if __name__ == "__main__":