capiscio 2.2.0__tar.gz → 2.4.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (29) hide show
  1. {capiscio-2.2.0 → capiscio-2.4.0}/CHANGELOG.md +26 -0
  2. {capiscio-2.2.0 → capiscio-2.4.0}/PKG-INFO +1 -1
  3. {capiscio-2.2.0 → capiscio-2.4.0}/pyproject.toml +1 -1
  4. {capiscio-2.2.0 → capiscio-2.4.0}/src/capiscio/__init__.py +1 -1
  5. {capiscio-2.2.0 → capiscio-2.4.0}/.github/workflows/e2e.yml +0 -0
  6. {capiscio-2.2.0 → capiscio-2.4.0}/.github/workflows/pr-checks.yml +0 -0
  7. {capiscio-2.2.0 → capiscio-2.4.0}/.github/workflows/publish.yml +0 -0
  8. {capiscio-2.2.0 → capiscio-2.4.0}/.github/workflows/test.yml +0 -0
  9. {capiscio-2.2.0 → capiscio-2.4.0}/.gitignore +0 -0
  10. {capiscio-2.2.0 → capiscio-2.4.0}/LICENSE +0 -0
  11. {capiscio-2.2.0 → capiscio-2.4.0}/README.md +0 -0
  12. {capiscio-2.2.0 → capiscio-2.4.0}/docs/getting-started/installation.md +0 -0
  13. {capiscio-2.2.0 → capiscio-2.4.0}/docs/index.md +0 -0
  14. {capiscio-2.2.0 → capiscio-2.4.0}/docs/reference/commands.md +0 -0
  15. {capiscio-2.2.0 → capiscio-2.4.0}/mkdocs.yml +0 -0
  16. {capiscio-2.2.0 → capiscio-2.4.0}/pytest.ini +0 -0
  17. {capiscio-2.2.0 → capiscio-2.4.0}/src/capiscio/cli.py +0 -0
  18. {capiscio-2.2.0 → capiscio-2.4.0}/src/capiscio/manager.py +0 -0
  19. {capiscio-2.2.0 → capiscio-2.4.0}/tests/README.md +0 -0
  20. {capiscio-2.2.0 → capiscio-2.4.0}/tests/conftest.py +0 -0
  21. {capiscio-2.2.0 → capiscio-2.4.0}/tests/e2e/conftest.py +0 -0
  22. {capiscio-2.2.0 → capiscio-2.4.0}/tests/e2e/fixtures/invalid-agent-card.json +0 -0
  23. {capiscio-2.2.0 → capiscio-2.4.0}/tests/e2e/fixtures/malformed.txt +0 -0
  24. {capiscio-2.2.0 → capiscio-2.4.0}/tests/e2e/fixtures/valid-agent-card.json +0 -0
  25. {capiscio-2.2.0 → capiscio-2.4.0}/tests/e2e/test_badge_e2e.py +0 -0
  26. {capiscio-2.2.0 → capiscio-2.4.0}/tests/e2e/test_validate_e2e.py +0 -0
  27. {capiscio-2.2.0 → capiscio-2.4.0}/tests/unit/test_cli.py +0 -0
  28. {capiscio-2.2.0 → capiscio-2.4.0}/tests/unit/test_manager.py +0 -0
  29. {capiscio-2.2.0 → capiscio-2.4.0}/uv.lock +0 -0
@@ -5,6 +5,32 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [Unreleased]
9
+
10
+ ## [2.4.0] - 2026-01-18
11
+
12
+ ### Changed
13
+ - **CORE VERSION**: Now downloads `capiscio-core` v2.4.0
14
+
15
+ ## [2.3.1] - 2025-01-14
16
+
17
+ ### Changed
18
+ - **CORE VERSION**: Now downloads `capiscio-core` v2.3.1
19
+
20
+ ### Fixed
21
+ - Aligned all version references across package metadata
22
+
23
+ ## [2.3.0] - 2025-01-13
24
+
25
+ ### Added
26
+ - **E2E Test Suite**: Comprehensive end-to-end test coverage for CLI wrapper workflows
27
+
28
+ ### Fixed
29
+ - **CLI Command Syntax**: Fixed incorrect command syntax in documentation
30
+
31
+ ### Changed
32
+ - **CORE VERSION**: Now downloads `capiscio-core` v2.3.0
33
+
8
34
  ## [2.2.0] - 2025-12-10
9
35
 
10
36
  ### Changed
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: capiscio
3
- Version: 2.2.0
3
+ Version: 2.4.0
4
4
  Summary: The official CapiscIO CLI tool for validating A2A agents.
5
5
  Project-URL: Homepage, https://capisc.io
6
6
  Project-URL: Documentation, https://docs.capisc.io/cli
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "capiscio"
7
- version = "2.2.0"
7
+ version = "2.4.0"
8
8
  description = "The official CapiscIO CLI tool for validating A2A agents."
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"
@@ -1,3 +1,3 @@
1
1
  """CapiscIO CLI package."""
2
2
 
3
- __version__ = "2.2.0"
3
+ __version__ = "2.3.1"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes