Skip to content

Commit 798acff

Browse files
author
Your Name
committed
fix: Update hardcoded SDK version strings from 1.1.3 to 1.1.5 in source code
1 parent a88b1ba commit 798acff

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

javascript/src/client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,6 @@ export class AgentGatePay {
135135
* Get SDK version
136136
*/
137137
static get version(): string {
138-
return '1.1.3';
138+
return '1.1.5';
139139
}
140140
}

python/agentgatepay_sdk/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
MandateError,
1313
)
1414

15-
__version__ = "1.1.3"
15+
__version__ = "1.1.5"
1616
__all__ = [
1717
"AgentGatePay",
1818
"AgentGatePayError",

python/agentgatepay_sdk/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,4 +120,4 @@ def health(self) -> dict:
120120
@staticmethod
121121
def version() -> str:
122122
"""Get SDK version"""
123-
return "1.1.3"
123+
return "1.1.5"

0 commit comments

Comments
 (0)