gaard-plugin-api 0.1.0__tar.gz → 0.2.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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: gaard-plugin-api
3
- Version: 0.1.0
3
+ Version: 0.2.0
4
4
  Summary: Versioned extension contracts and discovery for GAARD
5
5
  Requires-Python: >=3.11
6
6
  Description-Content-Type: text/markdown
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "gaard-plugin-api"
7
- version = "0.1.0"
7
+ version = "0.2.0"
8
8
  description = "Versioned extension contracts and discovery for GAARD"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.11"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: gaard-plugin-api
3
- Version: 0.1.0
3
+ Version: 0.2.0
4
4
  Summary: Versioned extension contracts and discovery for GAARD
5
5
  Requires-Python: >=3.11
6
6
  Description-Content-Type: text/markdown
@@ -23,12 +23,12 @@ def test_discovery_validates_manifests_and_package_compatibility() -> None:
23
23
  manifest = ExtensionManifest(
24
24
  id="acme-warehouse",
25
25
  version="1.2.3",
26
- requires={"gaard-connectors": ">=0.1,<0.2"},
26
+ requires={"gaard-connectors": ">=0.2,<0.3"},
27
27
  )
28
28
 
29
29
  records = discover_extensions(
30
30
  [FakeEntryPoint("acme", manifest)],
31
- package_version=lambda package_name: "0.1.0",
31
+ package_version=lambda package_name: "0.2.0",
32
32
  )
33
33
 
34
34
  assert len(records) == 1