diff --git a/CHANGELOG.md b/CHANGELOG.md index 7f77a0c..cb2c830 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ All notable changes to the `pisama` meta-package are documented here. The packag ## [Unreleased] +## [0.6.2] - 2026-07-30 + +### Fixed + +- Remove the legacy License classifier now that PEP 639 license_expression is set (setuptools>=78 forbids both together). + ## [0.6.0] - 2026-07-29 ### Added diff --git a/pyproject.toml b/pyproject.toml index 7e242bb..0722d62 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "pisama" -version = "0.6.1" +version = "0.6.2" description = "Multi-agent failure detection for production AI systems" readme = "README.md" license = "MIT" @@ -23,7 +23,6 @@ keywords = [ classifiers = [ "Development Status :: 3 - Alpha", "Intended Audience :: Developers", - "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", diff --git a/src/pisama/__init__.py b/src/pisama/__init__.py index 9f658f0..0ff22f0 100644 --- a/src/pisama/__init__.py +++ b/src/pisama/__init__.py @@ -14,7 +14,7 @@ __version__ = _pkg_version("pisama") except PackageNotFoundError: # running from a source checkout without an install - __version__ = "0.6.1" + __version__ = "0.6.2" from pisama._analyze import AnalyzeResult, Issue, analyze, async_analyze from pisama._http import PisamaAuthError