Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@
# 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:
long_description = "See the readme at: https://github.com/archlens/ArchLens/"

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",
Expand Down