Skip to content

Commit f14893f

Browse files
committed
Prepare v0.4.3 Release
1 parent afc2178 commit f14893f

4 files changed

Lines changed: 4 additions & 8 deletions

File tree

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ acme-challenges/
1616
build/
1717
src/certapi.egg-info
1818
.well-known/
19-
.vscode
19+
/.vscode
20+
!/.vscode/launch.json
2021
.venv
2122
.env
22-
.D
2323
test_db_temp/

TODO.txt

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,6 @@ Chatgpt says that when obtaining cert, there is alternate link that contains the
33
Link: <https://acme-v02.api.letsencrypt.org/acme/cert/XYZ>;rel="alternate"
44
- [x] The response already had fullchain cert, it was issue on the keystore part
55

6-
## Create class for FullChain certs
7-
It's simply array of certificates, but it changes serialization/deserilization logic
8-
- [x] This has been done needs validation.
9-
106

117
## Did not request certificate
128
Valid configuration Id:4329b56b0bba nginx-external_configs-1

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name="certapi",
5-
version="0.4.1",
5+
version="0.4.3",
66
packages=find_packages(where="src"),
77
package_dir={"": "src"},
88
install_requires=[

src/certapi/challenge_solver/dns/cloudflare/cloudflare_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ def create_record(self, name, data, domain):
116116
if response.getcode() != 200:
117117
print(f"Create TXT record [{response.getcode()}]", result)
118118
raise Exception(json.loads(response.read().decode("utf8")))
119-
119+
120120
return json.loads(result)["result"]["id"]
121121

122122
def delete_record(self, record, domain):

0 commit comments

Comments
 (0)