Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Changelog
=============

v1.0.4 (June 3, 2026)
---------------------------

- Do not pin ``aboutcode.federated`` dependencies to a single version, use version ranges.

v1.0.3 (May 15, 2026)
---------------------------

Expand Down
12 changes: 6 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "flot.buildapi"

[project]
name = "aboutcode.federated"
version = "1.0.3"
version = "1.0.4"
description = "A library for AboutCode PURL-based federated identifiers"
readme = "README.rst"
license = { text = "Apache-2.0" }
Expand Down Expand Up @@ -34,10 +34,10 @@ classifiers = [
]

dependencies = [
"packageurl_python == 0.17.6",
"saneyaml == 0.6.1",
"requests == 2.33.1",
"uritemplate == 4.2.0",
"packageurl_python >= 0.17.6",
"saneyaml >= 0.6.1",
"requests >= 2.33.1",
"uritemplate >= 4.2.0",
]

urls = { Homepage = "https://github.com/aboutcode-org/aboutcode.federated" }
Expand All @@ -62,7 +62,7 @@ dev = [


[tool.bumpversion]
current_version = "1.0.3"
current_version = "1.0.4"
allow_dirty = true

files = [
Expand Down