Skip to content

Commit 894db5f

Browse files
docs: Add changelog, update license, and bump version to 0.1.2
1 parent d457a58 commit 894db5f

4 files changed

Lines changed: 26 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
---
11+
12+
## [0.1.2] - 2025-07-24
13+
14+
### Added
15+
- Initial public release of the `pytrim` package.
16+
- Core functionality for detecting unused project dependencies.
17+
- Command-line interface (`pytrim`) for running analysis.
18+
- This `CHANGELOG.md` file to track project history.
19+
20+
### Changed
21+
- Corrected the `LICENSE` file to properly list copyright holders. The project remains under the MIT License.

LICENSE

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
MIT License
22

3-
Copyright (c) 2025 TrimTeam
3+
Copyright (c) 2025 Konstantinos Karakatsanis, George Alexopoulos,
4+
Giannis Karyotakis, Foivos Proestakis,
5+
and Evangelos Talos
46

57
Permission is hereby granted, free of charge, to any person obtaining a copy
68
of this software and associated documentation files (the "Software"), to deal

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 = "pytrim"
7-
version = "0.1.1"
7+
version = "0.1.2"
88
description = "Auto-detect and trim unused Python imports and dependencies"
99
readme = "README.md"
1010
requires-python = ">=3.10"

setup.py

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

2020
setup(
2121
name="pytrim",
22-
version=version.get("__version__", "0.1.1"),
22+
version=version.get("__version__", "0.1.2"),
2323
description="Auto-detect and trim unused dependencies from Python projects",
2424
long_description=long_description,
2525
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)