Skip to content

Commit

Permalink
Release 2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Daverball committed Aug 21, 2024
1 parent 48e5a0e commit 76b3e59
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion AIS/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@
'UnknownAISError'
)

__version__ = '2.2.1'
__version__ = '2.3.0'
2 changes: 1 addition & 1 deletion AIS/ais.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def post(self, payload: str) -> Dict[str, Any]:
}
cert = (self.cert_file, self.cert_key)
response = requests.post(url, data=payload, headers=headers,
cert=cert)
cert=cert, timeout=(10, 5))
sign_resp = response.json()['SignResponse']
result = sign_resp['Result']
if 'Error' in result['ResultMajor']:
Expand Down
3 changes: 3 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
Release History
---------------

2.3.0 (2024-08-21)
++++++++++++++++++

- Add Python 3.11, 3.12, 3.13 support
- Remove Python 3.7 support

Expand Down

0 comments on commit 76b3e59

Please sign in to comment.