Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/publish_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,4 @@ jobs:
uses: pypa/gh-action-pypi-publish@release/v1
with:
repository-url: https://test.pypi.org/legacy/
verbose: true
2 changes: 1 addition & 1 deletion envoy/auditlogs.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class AuditLogs(Resource):

@property
def endpoint(self):
return "complianceauditlogs"
return "auditlogs"

def create(self) -> None:
"""Audit logs are a read-only resource; this function will raise envoy.exceptions.ReadOnlyEndpoint."""
Expand Down
4 changes: 2 additions & 2 deletions envoy/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
"major": 1,
"minor": 2,
"micro": 0,
"releaselevel": "rc",
"releaselevel": "final",
"post": 0,
"serial": 2,
"serial": 0,
}


Expand Down
Loading