diff --git a/Makefile b/Makefile index a6af195..c89f011 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -PYROBUSTA_VERSION := v0.6.0 +PYROBUSTA_VERSION := v0.7.0 DEVICE ?= u0 SRC_DIR := src diff --git a/assets/www/examples.html b/assets/www/examples.html index 25f8efc..e0cdfd9 100644 --- a/assets/www/examples.html +++ b/assets/www/examples.html @@ -202,7 +202,7 @@

Demo Application

\ No newline at end of file diff --git a/assets/www/index.html b/assets/www/index.html index 66f9585..b3be74b 100644 --- a/assets/www/index.html +++ b/assets/www/index.html @@ -48,7 +48,7 @@

Available Resources

diff --git a/dist/pyrobusta/assets/www/examples.html b/dist/pyrobusta/assets/www/examples.html index 25f8efc..e0cdfd9 100644 --- a/dist/pyrobusta/assets/www/examples.html +++ b/dist/pyrobusta/assets/www/examples.html @@ -202,7 +202,7 @@

Demo Application

\ No newline at end of file diff --git a/dist/pyrobusta/assets/www/index.html b/dist/pyrobusta/assets/www/index.html index 66f9585..b3be74b 100644 --- a/dist/pyrobusta/assets/www/index.html +++ b/dist/pyrobusta/assets/www/index.html @@ -48,7 +48,7 @@

Available Resources

diff --git a/dist/pyrobusta/bindings/http_connection.mpy b/dist/pyrobusta/bindings/http_connection.mpy index 76aa0f2..6fd9c1b 100644 Binary files a/dist/pyrobusta/bindings/http_connection.mpy and b/dist/pyrobusta/bindings/http_connection.mpy differ diff --git a/dist/pyrobusta/protocol/http.mpy b/dist/pyrobusta/protocol/http.mpy index 0886693..b991b95 100644 Binary files a/dist/pyrobusta/protocol/http.mpy and b/dist/pyrobusta/protocol/http.mpy differ diff --git a/dist/pyrobusta/protocol/http_file_server.mpy b/dist/pyrobusta/protocol/http_file_server.mpy index d8fd5fd..f952c3b 100644 Binary files a/dist/pyrobusta/protocol/http_file_server.mpy and b/dist/pyrobusta/protocol/http_file_server.mpy differ diff --git a/dist/pyrobusta/protocol/http_multipart.mpy b/dist/pyrobusta/protocol/http_multipart.mpy index 672a687..41790a5 100644 Binary files a/dist/pyrobusta/protocol/http_multipart.mpy and b/dist/pyrobusta/protocol/http_multipart.mpy differ diff --git a/dist/pyrobusta/utils/config.mpy b/dist/pyrobusta/utils/config.mpy index 156b6ba..0001451 100644 Binary files a/dist/pyrobusta/utils/config.mpy and b/dist/pyrobusta/utils/config.mpy differ diff --git a/dist/pyrobusta/utils/helpers.mpy b/dist/pyrobusta/utils/helpers.mpy index e75c43e..b304126 100644 Binary files a/dist/pyrobusta/utils/helpers.mpy and b/dist/pyrobusta/utils/helpers.mpy differ diff --git a/package.json b/package.json index ff4963a..dc36327 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "version": "v0.6.0", + "version": "v0.7.0", "urls": [ [ "pyrobusta/connectivity/wifi.mpy", diff --git a/src/pyrobusta/utils/config.py b/src/pyrobusta/utils/config.py index 037ec28..6c17576 100644 --- a/src/pyrobusta/utils/config.py +++ b/src/pyrobusta/utils/config.py @@ -14,7 +14,7 @@ def const(n): # pylint: disable=C0116 from .helpers import normalize_path -PYROBUSTA_VERSION = "v0.6.0" +PYROBUSTA_VERSION = "v0.7.0" CONFIG_LOCATION = "pyrobusta.env" # -------------------------------------------