diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 6994310..1bb0a94 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -2,6 +2,27 @@ ## Unreleased +## v0.11.0 + +This release contains bug fixes, stability fixes and dependency +updates. + +Updating to this version does not require any changes to GitHub +workflow files. + +**Changes** + +* Increased the number of root rotations allowed in the client unsed by + the test workflow (#377) +* Versioned root metadata file is now created by the signing event (#352) + +**Fixes** + +* TUF key ids are now updated only when the repository is successfully + imported (#358) +* Relative links in published TUF repository state are now correct + (#354) + ## v0.10.0 Release includes several new features. It also fixes an issue with TUF keyids, diff --git a/repo/tuf_on_ci/_version.py b/repo/tuf_on_ci/_version.py index 61fb31c..ae6db5f 100644 --- a/repo/tuf_on_ci/_version.py +++ b/repo/tuf_on_ci/_version.py @@ -1 +1 @@ -__version__ = "0.10.0" +__version__ = "0.11.0" diff --git a/signer/tuf_on_ci_sign/__init__.py b/signer/tuf_on_ci_sign/__init__.py index 83bbc17..4264774 100644 --- a/signer/tuf_on_ci_sign/__init__.py +++ b/signer/tuf_on_ci_sign/__init__.py @@ -2,6 +2,6 @@ from tuf_on_ci_sign.import_repo import import_repo from tuf_on_ci_sign.sign import sign -__version__ = "0.10.0" +__version__ = "0.11.0" __all__ = ["delegate", "import_repo", "sign"]