Skip to content

Commit 3ccc6dc

Browse files
authored
fix display name (#29)
* fix display name * alternates and version bump
1 parent 1e1cecc commit 3ccc6dc

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

CHANGES.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
1.1.1
2+
- fix "display_name" and "alternates" of letsencrypt staging cross-sign
3+
14
1.1.0
25
- Minor typing updates
36

src/cert_utils/__init__.py

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

66
# ==============================================================================
77

8-
__VERSION__ = "1.1.0"
8+
__VERSION__ = "1.1.1"

src/cert_utils/letsencrypt_info.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -555,7 +555,7 @@
555555
},
556556
},
557557
"letsencrypt_staging_root_x2": {
558-
"display_name": "(STAGING) Pretend Pear X1",
558+
"display_name": "(STAGING) Bogus Broccoli X2",
559559
"url_pem": "https://letsencrypt.org/certs/staging/letsencrypt-stg-root-x2.pem",
560560
"is_trusted_root": True,
561561
"is_untrusted_root": True,
@@ -570,9 +570,10 @@
570570
"compatibility": {
571571
"All": ("<0", ">0", "Untrusted Fake Root"),
572572
},
573+
"alternates": ["letsencrypt_staging_root_x2_signed_by_x2"],
573574
},
574575
"letsencrypt_staging_root_x2_signed_by_x2": {
575-
"display_name": "(STAGING) Bogus Broccoli X2",
576+
"display_name": "(STAGING) Bogus Broccoli X2 (X1 cross-signed)",
576577
"url_pem": "https://letsencrypt.org/certs/staging/letsencrypt-stg-root-x2-signed-by-x1.pem",
577578
"is_trusted_root": True,
578579
"is_untrusted_root": True,

0 commit comments

Comments
 (0)