We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 346f808 commit bd04f84Copy full SHA for bd04f84
.github/workflows/client-test.yml
@@ -32,7 +32,7 @@ jobs:
32
uses: actions/checkout@v3
33
34
- name: '♻ Caching dependencies'
35
- uses: actions/cache@v3.3.1
+ uses: actions/cache@v4.2.2
36
id: cache
37
with:
38
path: ~/cache/bin/
src/arduino_iot_cloud/ucloud.py
@@ -21,13 +21,13 @@ class InvalidStateError(Exception):
21
try:
22
from arduino_iot_cloud._version import __version__
23
except (ImportError, AttributeError):
24
- __version__ = "1.3.3"
+ __version__ = "1.5.0"
25
26
# Server/port for basic auth.
27
_DEFAULT_SERVER = "iot.arduino.cc"
28
29
# Default port for cert based auth and basic auth.
30
-_DEFAULT_PORT = (8883, 8884)
+_DEFAULT_PORT = (8885, 8884)
31
class DoneException(Exception):
0 commit comments