diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 00000000..ec21723e --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,14 @@ +# Changelog + +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.2.5] - 2025-06-23 +### Fixed +- Added changelog + +## [0.2.4] - 2025-06-23 +### Fixed +- Fixed package depth functionality that was not working properly (with Sebastian Cloos Hylander) diff --git a/setup.py b/setup.py index 46fff54d..74922e4f 100644 --- a/setup.py +++ b/setup.py @@ -4,9 +4,9 @@ # Read README for long description here = os.path.abspath(os.path.dirname(__file__)) try: - with open(os.path.join(here, 'README.md'), encoding='utf-8') as f: + with open(os.path.join(here, "README.md"), encoding="utf-8") as f: readme = f.read() - with open(os.path.join(here, 'CHANGELOG.md'), encoding='utf-8') as f: + with open(os.path.join(here, "CHANGELOG.md"), encoding="utf-8") as f: changelog = f.read() long_description = f"{readme}\n\n{changelog}" except FileNotFoundError: @@ -14,7 +14,7 @@ setup( name="ArchLens", - version="0.2.4", + version="0.2.5", description="Designed for visualizing package dependencies and highlighting differences between" " branches in GitHub pull requests. It offers customization options to tailor package views.", author="The ArchLens Team",