Skip to content

Commit

Permalink
release: v0.13.2b1 (#666)
Browse files Browse the repository at this point in the history
In this release, as suggested by RSTUF user the name of Sigstore should
follow their format.

Rename: SigStore to Sigstore in CLI

Signed-off-by: Kairo de Araujo <[email protected]>
  • Loading branch information
kairoaraujo committed Aug 12, 2024
1 parent 4eb727b commit a95bac9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion repository_service_tuf/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
#
# SPDX-License-Identifier: MIT

version = "0.13.1b1"
version = "0.13.2b1"
copyright = "Copyright (c) 2024 Repository Service for TUF Contributors"
author = "Kairo de Araujo"
10 changes: 5 additions & 5 deletions repository_service_tuf/cli/admin/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
}
DEFAULT_BINS_NUMBER = 256

# SigStore issuers supported by RSTUF
# Sigstore issuers supported by RSTUF
SIGSTORE_ISSUERS = [
"https://github.com/login/oauth",
"https://login.microsoft.com",
Expand All @@ -83,7 +83,7 @@
# Root signers supported by RSTUF
class ROOT_SIGNERS(str, enum.Enum):
KEY_PEM = "Key PEM File"
SIGSTORE = "SigStore"
SIGSTORE = "Sigstore"

@classmethod
def values(self) -> List[str]:
Expand Down Expand Up @@ -209,13 +209,13 @@ def _new_keyid(key: Key) -> str:

def _load_key_from_sigstore_prompt() -> Optional[Key]:
console.print(
"\n:warning: SigStore is not supported by all TUF Clients.\n",
"\n:warning: Sigstore is not supported by all TUF Clients.\n",
justify="left",
style="italic",
)
identity = Prompt.ask("Please enter SigStore identity")
identity = Prompt.ask("Please enter Sigstore identity")
console.print(
"\n:warning: RSTUF only support SigStore public issuers.\n",
"\n:warning: RSTUF only support Sigstore public issuers.\n",
justify="left",
style="italic",
)
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/cli/admin/test_ceremony.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def test_ceremony_with_dry_run_and_custom_out_pem_and_sigstore_keys(
# selections for input_step4
"Key PEM File", # select key type
"add", # add key
"SigStore", # select key type
"Sigstore", # select key type
"https://github.com/login/oauth", # enter oidc issuer
"add", # add key
"Key PEM File", # select key type
Expand Down

0 comments on commit a95bac9

Please sign in to comment.