Skip to content

Commit c2cf454

Browse files
committed
Update Changelog for 0.7.0
Signed-off-by: Arthit Suriyawongkul <arthit@gmail.com>
1 parent 6dd60a0 commit c2cf454

5 files changed

Lines changed: 24 additions & 8 deletions

File tree

CHANGELOG.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,22 @@ and this project adheres to
1515
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
1616

1717
- Full release notes: <https://github.com/bact/pitloom/releases>
18-
- Commit history: <https://github.com/bact/pitloom/compare/v0.6.0...v0.6.1>
18+
- Commit history: <https://github.com/bact/pitloom/compare/v0.6.1...v0.7.0>
19+
20+
## [0.7.0] - 2026-05-12
21+
22+
### Added
23+
24+
- `-m` / `--aimodel` command-line option now works with Hugging Face Hub URL
25+
([#71])
26+
27+
### Fixed
28+
29+
- Export license information of an AI model
30+
(was previously extracted but not being exported) ([#72])
31+
32+
[#71]: https://github.com/bact/pitloom/pull/71
33+
[#72]: https://github.com/bact/pitloom/pull/72
1934

2035
## [0.6.1] - 2026-05-07
2136

@@ -141,6 +156,7 @@ release because "Loom" and "Pyloom" were unavailable on PyPI.
141156

142157
---
143158

159+
[0.7.0]: https://github.com/bact/pitloom/compare/v0.6.1...v0.7.0
144160
[0.6.1]: https://github.com/bact/pitloom/compare/v0.6.0...v0.6.1
145161
[0.6.0]: https://github.com/bact/pitloom/compare/v0.5.1...v0.6.0
146162
[0.5.1]: https://github.com/bact/pitloom/compare/v0.5.0...v0.5.1

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ abstract: Automated transparency, woven from the ground up. SBOM generation for
99
repository-code: "https://github.com/bact/pitloom"
1010
type: software
1111
doi: 10.5281/zenodo.19243681
12-
version: 0.6.1
12+
version: 0.7.0
1313
license-url: "https://spdx.org/licenses/Apache-2.0"
1414
keywords:
1515
- sbom
@@ -21,4 +21,4 @@ keywords:
2121
- gguf
2222
- onnx
2323
- safetensors
24-
date-released: 2026-05-07
24+
date-released: 2026-05-12

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ Keras, HDF5, NumPy, fastText.
115115

116116
#### Hugging Face model SBOM
117117

118-
Pass a Hugging Face URL or model ID directly - no local file required.
118+
Pass a Hugging Face Hub URL or model ID directly - no local file required.
119119
Pitloom fetches metadata from the Hub (model card, `config.json`,
120120
`tokenizer_config.json`, and `generation_config.json`) and produces an
121121
enriched `ai_AIPackage` SBOM with architecture, hyperparameters, license,

codemeta.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
"codeRepository": "https://github.com/bact/pitloom",
1919
"copyrightYear": 2026,
2020
"dateCreated": "2026-03-27",
21-
"dateModified": "2026-05-07",
22-
"datePublished": "2026-05-07",
21+
"dateModified": "2026-05-12",
22+
"datePublished": "2026-05-12",
2323
"description": "Automated transparency, woven from the ground up. SBOM generation for Python & AI projects. Extract metadata from GGUF, ONNX, PyTorch, and Safetensors models with native Hatchling build-hook support.",
2424
"developmentStatus": "active",
2525
"downloadUrl": "https://github.com/bact/pitloom/releases",
@@ -54,5 +54,5 @@
5454
"programmingLanguage": "Python 3",
5555
"readme": "https://github.com/bact/pitloom/blob/main/README.md",
5656
"url": "https://github.com/bact/pitloom",
57-
"version": "0.6.1"
57+
"version": "0.7.0"
5858
}

src/pitloom/__about__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44

55
"""Package information for Pitloom."""
66

7-
__version__ = "0.6.1"
7+
__version__ = "0.7.0"

0 commit comments

Comments
 (0)