Skip to content

Commit

Permalink
Version 3.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
adferrand committed Mar 21, 2021
1 parent f893c12 commit 265c1a2
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 14 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Changelog

## master - CURRENT

## 3.9.0 - 21/03/2021
### Modified
* Update Lexicon to 3.5.5 (add Mythic Beasts and Infomaniak providers)
* Update Certbot to 1.13.0
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "dnsrobocert"
version = "3.8.3"
version = "3.9.0"
description = "A tool to manage your DNS-challenged TLS certificates"
license = "MIT"
keywords = [
Expand Down
18 changes: 5 additions & 13 deletions src/dnsrobocert/core/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
import subprocess
import sys
import threading
from typing import Any, Dict, List, Optional, Union
from pathlib import Path
from typing import Any, Dict, List, Optional, Union

import coloredlogs
from certbot.compat import misc
Expand Down Expand Up @@ -172,18 +172,10 @@ def get_default_args() -> Dict[str, str]:
if os.environ.get("SNAP"):
user_home = os.environ.get("SNAP_REAL_HOME", str(Path.home()))
return {
"config": os.path.join(
user_home, "dnsrobocert/dnsrobocert.yml"
),
"configDesc": os.path.join(
user_home, "dnsrobocert/dnsrobocert.yml"
),
"directory": os.path.join(
user_home, "dnsrobocert/letsencrypt"
),
"directoryDesc": os.path.join(
user_home, "dnsrobocert/letsencrypt"
),
"config": os.path.join(user_home, "dnsrobocert/dnsrobocert.yml"),
"configDesc": os.path.join(user_home, "dnsrobocert/dnsrobocert.yml"),
"directory": os.path.join(user_home, "dnsrobocert/letsencrypt"),
"directoryDesc": os.path.join(user_home, "dnsrobocert/letsencrypt"),
}

return {
Expand Down

0 comments on commit 265c1a2

Please sign in to comment.