uv-sbom-bin 0.1.0__tar.gz → 1.0.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.
@@ -46,3 +46,6 @@ Icon
46
46
  Network Trash Folder
47
47
  Temporary Items
48
48
  .apdisk
49
+
50
+ # Claude Code context saves (As it may contain sensitive information)
51
+ .claude/saved-contexts/
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: uv-sbom-bin
3
- Version: 0.1.0
3
+ Version: 1.0.0
4
4
  Summary: Python wrapper for uv-sbom - SBOM generation tool for uv projects
5
5
  Project-URL: Homepage, https://github.com/Taketo-Yoda/uv-sbom
6
6
  Project-URL: Repository, https://github.com/Taketo-Yoda/uv-sbom
@@ -8,7 +8,7 @@ Project-URL: Bug Tracker, https://github.com/Taketo-Yoda/uv-sbom/issues
8
8
  Author-email: Taketo Yoda <exhaust7.drs@gmail.com>
9
9
  License: MIT
10
10
  Keywords: cyclonedx,python-wrapper,sbom,security,supply-chain,uv
11
- Classifier: Development Status :: 4 - Beta
11
+ Classifier: Development Status :: 5 - Production/Stable
12
12
  Classifier: Intended Audience :: Developers
13
13
  Classifier: License :: OSI Approved :: MIT License
14
14
  Classifier: Operating System :: OS Independent
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "uv-sbom-bin"
7
- version = "0.1.0"
7
+ version = "1.0.0"
8
8
  description = "Python wrapper for uv-sbom - SBOM generation tool for uv projects"
9
9
  readme = "README.md"
10
10
  license = { text = "MIT" }
@@ -20,7 +20,7 @@ keywords = [
20
20
  "python-wrapper"
21
21
  ]
22
22
  classifiers = [
23
- "Development Status :: 4 - Beta",
23
+ "Development Status :: 5 - Production/Stable",
24
24
  "Intended Audience :: Developers",
25
25
  "License :: OSI Approved :: MIT License",
26
26
  "Operating System :: OS Independent",
@@ -1,6 +1,6 @@
1
1
  """Python wrapper for uv-sbom CLI tool."""
2
2
 
3
- __version__ = "0.1.0"
3
+ __version__ = "1.0.0"
4
4
 
5
5
  from .install import ensure_binary, get_binary_path
6
6
 
@@ -9,7 +9,7 @@ from pathlib import Path
9
9
  from urllib.request import urlretrieve
10
10
 
11
11
  # Version of uv-sbom to install
12
- UV_SBOM_VERSION = "0.1.0"
12
+ UV_SBOM_VERSION = "1.0.0"
13
13
 
14
14
  # GitHub release URL template
15
15
  RELEASE_URL_TEMPLATE = (
File without changes